The patch titled i386: remove junk from stack dump has been added to the -mm tree. Its filename is i386-remove-junk-from-stack-dump.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Chuck Ebbert <76306.1226@xxxxxxxxxxxxxx> i386 stack dump has a "<0>" in the middle of the line and an extra space between columns in multicolumn mode. Remove those and also remove an extra blank line of source code. Signed-off-by: Chuck Ebbert <76306.1226@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/traps.c | 4 +--- 1 files changed, 1 insertion(+), 3 deletions(-) diff -puN arch/i386/kernel/traps.c~i386-remove-junk-from-stack-dump arch/i386/kernel/traps.c --- 25/arch/i386/kernel/traps.c~i386-remove-junk-from-stack-dump Mon May 15 14:33:59 2006 +++ 25-akpm/arch/i386/kernel/traps.c Mon May 15 14:33:59 2006 @@ -130,9 +130,8 @@ static inline int print_addr_and_symbol( print_symbol("%s", addr); printed = (printed + 1) % CONFIG_STACK_BACKTRACE_COLS; - if (printed) - printk(" "); + printk(" "); else printk("\n"); @@ -218,7 +217,6 @@ static void show_stack_log_lvl(struct ta } stack = esp; - printk(log_lvl); for(i = 0; i < kstack_depth_to_print; i++) { if (kstack_end(stack)) break; _ Patches currently in -mm which might be from 76306.1226@xxxxxxxxxxxxxx are i386-remove-junk-from-stack-dump.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