The patch titled i386: remove junk from stack dump has been removed from the -mm tree. Its filename is i386-remove-junk-from-stack-dump.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. ------------------------------------------------------ Subject: i386: remove junk from stack dump 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 --- devel/arch/i386/kernel/traps.c~i386-remove-junk-from-stack-dump 2006-05-20 14:59:33.000000000 -0700 +++ devel-akpm/arch/i386/kernel/traps.c 2006-05-20 14:59:33.000000000 -0700 @@ -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"); @@ -212,7 +211,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 origin.patch i386-let-usermode-execute-the-enter.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