diff options
author | Andrew Morton <akpm@osdl.org> | 2005-07-27 20:43:25 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-28 01:25:47 +0200 |
commit | 388b0925f59461cb482447ea87e6942b5653ee1d (patch) | |
tree | 45437b5403ccdf4b8e5b8bee30e8c26c09c03b2c /include/asm-i386/ptrace.h | |
parent | [PATCH] x86_64 fsnotify build fix (diff) | |
download | linux-388b0925f59461cb482447ea87e6942b5653ee1d.tar.xz linux-388b0925f59461cb482447ea87e6942b5653ee1d.zip |
[PATCH] user_mode_vm() build fix
include/asm/ptrace.h: In function `user_mode_vm':
include/asm/ptrace.h:67: `VM_MASK' undeclared (first use in this function)
Cc: Chuck Ebbert <76306.1226@compuserve.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-i386/ptrace.h')
-rw-r--r-- | include/asm-i386/ptrace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-i386/ptrace.h b/include/asm-i386/ptrace.h index b926cb4f4cfd..05532875e39e 100644 --- a/include/asm-i386/ptrace.h +++ b/include/asm-i386/ptrace.h @@ -55,6 +55,9 @@ struct pt_regs { #define PTRACE_SET_THREAD_AREA 26 #ifdef __KERNEL__ + +#include <asm/vm86.h> + struct task_struct; extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code); |