The patch titled m68knommu: start dump from exception stack has been removed from the -mm tree. Its filename was m68knommu-start-dump-from-exception-stack.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: m68knommu: start dump from exception stack From: Greg Ungerer <gerg@xxxxxxxxxxxx> In die_if_kernel() start the stack dump at the exception-time SP, not at the SP with all the saved registers; the stack below exception-time sp contains only exception-saved values and is already printed in details just before. Signed-off-by: Philippe De Muyter <phdm@xxxxxxxxx> Signed-off-by: Greg Ungerer <gerg@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/m68knommu/kernel/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/m68knommu/kernel/traps.c~m68knommu-start-dump-from-exception-stack arch/m68knommu/kernel/traps.c --- a/arch/m68knommu/kernel/traps.c~m68knommu-start-dump-from-exception-stack +++ a/arch/m68knommu/kernel/traps.c @@ -80,7 +80,7 @@ void die_if_kernel(char *str, struct pt_ printk(KERN_EMERG "Process %s (pid: %d, stackpage=%08lx)\n", current->comm, current->pid, PAGE_SIZE+(unsigned long)current); - show_stack(NULL, (unsigned long *)fp); + show_stack(NULL, (unsigned long *)(fp + 1)); add_taint(TAINT_DIE); do_exit(SIGSEGV); } _ Patches currently in -mm which might be from gerg@xxxxxxxxxxxx are origin.patch git-mtd.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