From: Roland McGrath Date: Wed, 30 Jan 2008 12:30:57 +0000 (+0100) Subject: x86: setup64 eflags constants X-Git-Tag: v2.6.25-rc1~1143^2~677 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=a46ff73d53f011de1dfc1983b05db2c04d193713;p=~shefty%2Frdma-dev.git x86: setup64 eflags constants This cleans up arch/x86/kernel/setup64.c to use the X86_EFLAGS_* constants from instead of the EF_* enum in . Signed-off-by: Roland McGrath Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/arch/x86/kernel/setup64.c b/arch/x86/kernel/setup64.c index 3558ac78c92..51297cca6b4 100644 --- a/arch/x86/kernel/setup64.c +++ b/arch/x86/kernel/setup64.c @@ -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)