From: Liu Ye Date: Wed, 12 Mar 2025 09:37:17 +0000 (+0800) Subject: mm/debug: add line breaks X-Git-Tag: v6.15-rc1~81^2~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=456620c5cb238744f3e08a04af935fce25ca2df1;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Andrew Morton --- diff --git a/mm/debug.c b/mm/debug.c index 83ef3bd0ccd32..db83e381a8ae3 100644 --- a/mm/debug.c +++ b/mm/debug.c @@ -173,7 +173,7 @@ dump: void dump_page(const struct page *page, const char *reason) { if (PagePoisoned(page)) - pr_warn("page:%p is uninitialized and poisoned", page); + pr_warn("page:%p is uninitialized and poisoned\n", page); else __dump_page(page); if (reason)