The patch titled Use constant instead of raw number in x86_64 ioperm.c has been removed from the -mm tree. Its filename was use-constant-instead-of-raw-number-in-x86_64-iopermc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 - 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