The patch titled Subject: proc/base: make prompt shell start from new line after executing "cat /proc/$pid/wchan" has been removed from the -mm tree. Its filename was proc-base-make-prompt-shell-start-from-new-line-after-executing-cat-proc-pid-wchan.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Minfei Huang <mnfhuang@xxxxxxxxx> Subject: proc/base: make prompt shell start from new line after executing "cat /proc/$pid/wchan" It is not elegant that prompt shell does not start from new line after executing "cat /proc/$pid/wchan". Make prompt shell start from new line. Signed-off-by: Minfei Huang <mnfhuang@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/base.c~proc-base-make-prompt-shell-start-from-new-line-after-executing-cat-proc-pid-wchan fs/proc/base.c --- a/fs/proc/base.c~proc-base-make-prompt-shell-start-from-new-line-after-executing-cat-proc-pid-wchan +++ a/fs/proc/base.c @@ -434,7 +434,7 @@ static int proc_pid_wchan(struct seq_fil && !lookup_symbol_name(wchan, symname)) seq_printf(m, "%s", symname); else - seq_putc(m, '0'); + seq_puts(m, "0\n"); return 0; } _ Patches currently in -mm which might be from mnfhuang@xxxxxxxxx are kexec-make-a-pair-of-map-unmap-reserved-pages-in-error-path.patch kexec-do-a-cleanup-for-function-kexec_load.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