diff options
author | Peter Zijlstra <[email protected]> | 2015-05-19 13:53:29 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2015-05-19 15:42:25 +0200 |
commit | fbc9f16a23a307f1ffbd498100f36a3e99367432 (patch) | |
tree | 92165ac64b288f7c256f8ea2232b28240f720b6d | |
parent | 6aaa10254dfe61c8c5e87c26e21be0664782a5b4 (diff) |
mm/fault, um: Fix compile error
A missing include file caused build fail.
Reported-by: Ingo Molnar <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: David Hildenbrand <[email protected]>
Cc: [email protected]
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Zijlstra (Intel) <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Fixes: 70ffdb9393a7 ("mm/fault, arch: Use pagefault_disable() to check for disabled pagefaults in the handler")
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/um/kernel/trap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/kernel/trap.c b/arch/um/kernel/trap.c index f9c9e5a6beba..47ff9b7f3e5d 100644 --- a/arch/um/kernel/trap.c +++ b/arch/um/kernel/trap.c @@ -7,6 +7,7 @@ #include <linux/sched.h> #include <linux/hardirq.h> #include <linux/module.h> +#include <linux/uaccess.h> #include <asm/current.h> #include <asm/pgtable.h> #include <asm/tlbflush.h> |