4 #include <asm/ptrace-abi.h>
6 /* this struct defines the way the registers are stored on the
7 stack during a system call. */
32 #include <asm/segment.h>
35 extern void send_sigtrap(struct task_struct
*tsk
, struct pt_regs
*regs
, int error_code
);
38 * user_mode_vm(regs) determines whether a register set came from user mode.
39 * This is true if V8086 mode was enabled OR if the register set was from
40 * protected mode with RPL-3 CS value. This tricky test checks that with
41 * one comparison. Many places in the kernel can bypass this full check
42 * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
44 static inline int user_mode(struct pt_regs
*regs
)
46 return (regs
->xcs
& SEGMENT_RPL_MASK
) == USER_RPL
;
48 static inline int user_mode_vm(struct pt_regs
*regs
)
50 return ((regs
->xcs
& SEGMENT_RPL_MASK
) | (regs
->eflags
& VM_MASK
)) >= USER_RPL
;
52 static inline int v8086_mode(struct pt_regs
*regs
)
54 return (regs
->eflags
& VM_MASK
);
57 #define instruction_pointer(regs) ((regs)->eip)
58 #define regs_return_value(regs) ((regs)->eax)
60 extern unsigned long profile_pc(struct pt_regs
*regs
);
61 #endif /* __KERNEL__ */