The patch titled Remove unneeded test of 'task' in dump_trace() has been removed from the -mm tree. Its filename was remove-unneeded-test-of-task-in-dump_trace.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Remove unneeded test of 'task' in dump_trace() From: Jesper Juhl <jesper.juhl@xxxxxxxxx> Remove unneeded test of task != NULL from arch/i386/kernel/traps.c::dump_trace() At the start of the function we have this test: if (!task) task = current; so further down there's no need to test 'task'. Signed-off-by: Jesper Juhl <jesper.juhl@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/kernel/traps.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/traps.c~remove-unneeded-test-of-task-in-dump_trace arch/i386/kernel/traps.c --- a/arch/i386/kernel/traps.c~remove-unneeded-test-of-task-in-dump_trace +++ a/arch/i386/kernel/traps.c @@ -216,7 +216,7 @@ void dump_trace(struct task_struct *task if (!stack) { unsigned long dummy; stack = &dummy; - if (task && task != current) + if (task != current) stack = (unsigned long *)task->thread.esp; } _ Patches currently in -mm which might be from jesper.juhl@xxxxxxxxx are origin.patch fix-acpi_ev_pci_config_region_setup-to-avoid-memory-leak.patch git-gfs2-nmw.patch git-mtd.patch git-xfs.patch floppy-do-a-very-minimal-style-cleanup-of-the-floppy-driver.patch floppy-remove-dead-commented-out-code-from-floppy-driver.patch floppy-remove-register-keyword-use-from-floppy-driver.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