X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fasm-i386%2Fptrace.h;h=f324c53b6f9a8e96be3ada795ff90e3e296e6acd;hb=6f91fe88e4e28b40b4f08d99e0ea6d17b70e9567;hp=05532875e39e2846a7d757f242617990d039d279;hpb=5a90fa71f6d45054c78b2bd6dbc4feba1638e1d2;p=linux-2.6 diff --git a/include/asm-i386/ptrace.h b/include/asm-i386/ptrace.h index 05532875e3..f324c53b6f 100644 --- a/include/asm-i386/ptrace.h +++ b/include/asm-i386/ptrace.h @@ -54,6 +54,9 @@ struct pt_regs { #define PTRACE_GET_THREAD_AREA 25 #define PTRACE_SET_THREAD_AREA 26 +#define PTRACE_SYSEMU 31 +#define PTRACE_SYSEMU_SINGLESTEP 32 + #ifdef __KERNEL__ #include @@ -61,6 +64,13 @@ struct pt_regs { struct task_struct; extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code); +/* + * user_mode_vm(regs) determines whether a register set came from user mode. + * This is true if V8086 mode was enabled OR if the register set was from + * protected mode with RPL-3 CS value. This tricky test checks that with + * one comparison. Many places in the kernel can bypass this full check + * if they have already ruled out V8086 mode, so user_mode(regs) can be used. + */ static inline int user_mode(struct pt_regs *regs) { return (regs->xcs & 3) != 0;