The patch titled Use constant instead of raw number in x86_64 ioperm.c has been added to the -mm tree. Its filename is use-constant-instead-of-raw-number-in-x86_64-iopermc.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Use constant instead of raw number in x86_64 ioperm.c From: Glauber de Oliveira Costa <gcosta@xxxxxxxxxx> This is a tiny cleanup to increase readability Signed-off-by: Glauber de Oliveira Costa <gcosta@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/kernel/ioport.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/kernel/ioport.c~use-constant-instead-of-raw-number-in-x86_64-iopermc arch/x86_64/kernel/ioport.c --- a/arch/x86_64/kernel/ioport.c~use-constant-instead-of-raw-number-in-x86_64-iopermc +++ a/arch/x86_64/kernel/ioport.c @@ -114,6 +114,6 @@ asmlinkage long sys_iopl(unsigned int le if (!capable(CAP_SYS_RAWIO)) return -EPERM; } - regs->eflags = (regs->eflags &~ 0x3000UL) | (level << 12); + regs->eflags = (regs->eflags &~ X86_EFLAGS_IOPL) | (level << 12); return 0; } _ Patches currently in -mm which might be from gcosta@xxxxxxxxxx are remove-fastcall-references-in-x86_64-code.patch use-constant-instead-of-raw-number-in-x86_64-iopermc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html