diff options
author | gorcunov@gmail.com <gorcunov@gmail.com> | 2008-03-28 10:56:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:33 -0400 |
commit | 6b6891f9c545ccd45d6d8ddfd33ce27c22c271a7 (patch) | |
tree | 3cfd4cfda9363eac5e9126978e3f2d6dd8b55d32 /include/asm-x86/ptrace.h | |
parent | 6093015db2bd9e70cf20cdd23be1a50733baafdd (diff) |
x86: cleanup - rename VM_MASK to X86_VM_MASK
This patch renames VM_MASK to X86_VM_MASK (which
in turn defined as alias to X86_EFLAGS_VM) to better
distinguish from virtual memory flags. We can't just
use X86_EFLAGS_VM instead because it is also used
for conditional compilation
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/ptrace.h')
-rw-r--r-- | include/asm-x86/ptrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index e779f2b26b32..24ec061566c5 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h | |||
@@ -170,7 +170,7 @@ static inline int user_mode(struct pt_regs *regs) | |||
170 | static inline int user_mode_vm(struct pt_regs *regs) | 170 | static inline int user_mode_vm(struct pt_regs *regs) |
171 | { | 171 | { |
172 | #ifdef CONFIG_X86_32 | 172 | #ifdef CONFIG_X86_32 |
173 | return ((regs->cs & SEGMENT_RPL_MASK) | (regs->flags & VM_MASK)) >= | 173 | return ((regs->cs & SEGMENT_RPL_MASK) | (regs->flags & X86_VM_MASK)) >= |
174 | USER_RPL; | 174 | USER_RPL; |
175 | #else | 175 | #else |
176 | return user_mode(regs); | 176 | return user_mode(regs); |
@@ -180,7 +180,7 @@ static inline int user_mode_vm(struct pt_regs *regs) | |||
180 | static inline int v8086_mode(struct pt_regs *regs) | 180 | static inline int v8086_mode(struct pt_regs *regs) |
181 | { | 181 | { |
182 | #ifdef CONFIG_X86_32 | 182 | #ifdef CONFIG_X86_32 |
183 | return (regs->flags & VM_MASK); | 183 | return (regs->flags & X86_VM_MASK); |
184 | #else | 184 | #else |
185 | return 0; /* No V86 mode support in long mode */ | 185 | return 0; /* No V86 mode support in long mode */ |
186 | #endif | 186 | #endif |