summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiu Ye <liuye@kylinos.cn>2025-03-12 17:37:17 +0800
committerAndrew Morton <akpm@linux-foundation.org>2025-03-17 22:07:05 -0700
commit456620c5cb238744f3e08a04af935fce25ca2df1 (patch)
tree572c4e14485021122dc45fc8b497a384f27e6cfd
parentce50f4bc42af4d3811d3863ed14b0c33ab5cef81 (diff)
downloadlinux-456620c5cb238744f3e08a04af935fce25ca2df1.tar.gz
linux-456620c5cb238744f3e08a04af935fce25ca2df1.tar.bz2
linux-456620c5cb238744f3e08a04af935fce25ca2df1.zip
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>
-rw-r--r--mm/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/debug.c b/mm/debug.c
index 83ef3bd0ccd3..db83e381a8ae 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)