* [PATCH] mm/debug: Add line breaks
@ 2025-03-12 9:37 Liu Ye
0 siblings, 0 replies; only message in thread
From: Liu Ye @ 2025-03-12 9:37 UTC (permalink / raw)
To: akpm; +Cc: linux-mm, linux-kernel, willy, Liu Ye
Missing a newline character at the end of the format string.
Signed-off-by: Liu Ye <liuye@kylinos.cn>
---
mm/debug.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/debug.c b/mm/debug.c
index 8d2acf432385..db1894c5e8b9 100644
--- a/mm/debug.c
+++ b/mm/debug.c
@@ -165,7 +165,7 @@ static void __dump_page(const struct page *page)
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)
--
2.25.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-03-12 9:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-03-12 9:37 [PATCH] mm/debug: Add line breaks Liu Ye
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox