Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

mm/debug: add line breaks

Missing a newline character at the end of the format string.

Link: https://lkml.kernel.org/r/20250312093717.364031-1-liuye@kylinos.cn
Signed-off-by: Liu Ye <liuye@kylinos.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Liu Ye and committed by
Andrew Morton
456620c5 ce50f4bc

+1 -1
+1 -1
mm/debug.c
··· 173 173 void dump_page(const struct page *page, const char *reason) 174 174 { 175 175 if (PagePoisoned(page)) 176 - pr_warn("page:%p is uninitialized and poisoned", page); 176 + pr_warn("page:%p is uninitialized and poisoned\n", page); 177 177 else 178 178 __dump_page(page); 179 179 if (reason)