The patch titled m68knommu: start dump from exception stack has been added to the -mm tree. Its filename is m68knommu-start-dump-from-exception-stack.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 files 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 m68knommu-generic-irq-handling.patch m68knommu-start-dump-from-exception-stack.patch m68knommu-remove-is_in_rom-function.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