From: Matthew Wilcox (Oracle) Date: Fri, 7 Aug 2020 06:19:39 +0000 (-0700) Subject: mm/debug: print head flags in dump_page X-Git-Tag: v5.9-rc1~97^2~117 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b93d59e90d4403dd7c6bccaf27bd5bc91396866;p=thirdparty%2Flinux.git mm/debug: print head flags in dump_page Tail page flags contain very little useful information. Print the head page's flags instead. While the flags will contain "head" for tail pages, this should not be too confusing as the previous line starts with the word "head:" and so the flags should be interpreted as belonging to the head page. Signed-off-by: Matthew Wilcox (Oracle) Signed-off-by: Andrew Morton Reviewed-by: John Hubbard Acked-by: Mike Rapoport Acked-by: Vlastimil Babka Cc: "Kirill A. Shutemov" Cc: William Kucharski Link: http://lkml.kernel.org/r/20200709202117.7216-4-willy@infradead.org Signed-off-by: Linus Torvalds --- diff --git a/mm/debug.c b/mm/debug.c index b0ebf83eec899..27837c18027ca 100644 --- a/mm/debug.c +++ b/mm/debug.c @@ -168,7 +168,7 @@ void __dump_page(struct page *page, const char *reason) out_mapping: BUILD_BUG_ON(ARRAY_SIZE(pageflag_names) != __NR_PAGEFLAGS + 1); - pr_warn("%sflags: %#lx(%pGp)%s\n", type, page->flags, &page->flags, + pr_warn("%sflags: %#lx(%pGp)%s\n", type, head->flags, &head->flags, page_cma ? " CMA" : ""); hex_only: