The patch titled kprobe cleanup for VM_MASK judgement has been removed from the -mm tree. Its filename is kprobe-cleanup-for-vm_mask-judgement.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: "mao, bibo" <bibo.mao@xxxxxxxxx> When trap happens in user space, kprobe_exceptions_notify() funtion will skip it. This patch deletes some unnecessary code for VM_MASK judgement in eflags. Signed-off-by: bibo, mao <bibo.mao@xxxxxxxxx> Cc: Masami Hiramatsu <hiramatu@xxxxxxxxxxxxxxxxx> Cc: Ananth N Mavinakayanahalli <ananth@xxxxxxxxxx> Acked-by: "Keshavamurthy, Anil S" <anil.s.keshavamurthy@xxxxxxxxx> Acked-by: Prasanna S Panchamukhi <prasanna@xxxxxxxxxx> Cc: Jim Keniston <jkenisto@xxxxxxxxxx> Cc: Yumiko Sugita <sugita@xxxxxxxxxxxxxxxxx> Cc: Satoshi Oshima <soshima@xxxxxxxxxx> Cc: Hideo Aoki <haoki@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/kprobes.c | 9 --------- 1 files changed, 9 deletions(-) diff -puN arch/i386/kernel/kprobes.c~kprobe-cleanup-for-vm_mask-judgement arch/i386/kernel/kprobes.c --- devel/arch/i386/kernel/kprobes.c~kprobe-cleanup-for-vm_mask-judgement 2006-04-27 18:39:04.000000000 -0700 +++ devel-akpm/arch/i386/kernel/kprobes.c 2006-04-27 18:39:04.000000000 -0700 @@ -242,10 +242,6 @@ static int __kprobes kprobe_handler(stru kcb->kprobe_status = KPROBE_REENTER; return 1; } else { - if (regs->eflags & VM_MASK) { - /* We are in virtual-8086 mode. Return 0 */ - goto no_kprobe; - } if (*addr != BREAKPOINT_INSTRUCTION) { /* The breakpoint instruction was removed by * another cpu right after we hit, no further @@ -265,11 +261,6 @@ static int __kprobes kprobe_handler(stru p = get_kprobe(addr); if (!p) { - if (regs->eflags & VM_MASK) { - /* We are in virtual-8086 mode. Return 0 */ - goto no_kprobe; - } - if (*addr != BREAKPOINT_INSTRUCTION) { /* * The breakpoint instruction was removed right _ Patches currently in -mm which might be from bibo.mao@xxxxxxxxx are origin.patch kprobemulti-kprobe-posthandler-for-booster.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