]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
x86: setup64 eflags constants
authorRoland McGrath <roland@redhat.com>
Wed, 30 Jan 2008 12:30:57 +0000 (13:30 +0100)
committerIngo Molnar <mingo@elte.hu>
Wed, 30 Jan 2008 12:30:57 +0000 (13:30 +0100)
This cleans up arch/x86/kernel/setup64.c to use the X86_EFLAGS_* constants
from <asm/processor-flags.h> instead of the EF_* enum in <asm/ptrace.h>.

Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kernel/setup64.c

index 3558ac78c9265517a4eb22628708f9774ded1f8b..51297cca6b42317811e7625953bc48436ffec585 100644 (file)
@@ -169,7 +169,8 @@ void syscall_init(void)
 #endif
 
        /* Flags to clear on syscall */
-       wrmsrl(MSR_SYSCALL_MASK, EF_TF|EF_DF|EF_IE|0x3000); 
+       wrmsrl(MSR_SYSCALL_MASK,
+              X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|X86_EFLAGS_IOPL);
 }
 
 void __cpuinit check_efer(void)