linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/vmstat: add header line to /proc/buddyinfo output
@ 2025-09-18  7:17 Ye Liu
  2025-09-18  7:29 ` Michal Hocko
  0 siblings, 1 reply; 8+ messages in thread
From: Ye Liu @ 2025-09-18  7:17 UTC (permalink / raw)
  To: Andrew Morton, David Hildenbrand
  Cc: Ye Liu, Lorenzo Stoakes, Liam R. Howlett, Vlastimil Babka,
	Mike Rapoport, Suren Baghdasaryan, Michal Hocko, linux-mm,
	linux-kernel

From: Ye Liu <liuye@kylinos.cn>

Add a header line to /proc/buddyinfo that shows the order numbers
for better readability and clarity.

Before:
Node 0, zone      DMA      0      0      0      0      0      0      0 ...
Node 0, zone    DMA32      5      8      6      6      7      5      8 ...
Node 0, zone   Normal   1113    351    138     65     38     31     25 ...

After:
Free pages per order       0      1      2      3      4      5      6 ...
Node 0, zone      DMA      0      0      0      0      0      0      0 ...
Node 0, zone    DMA32      5      8      6      6      7      5      8 ...
Node 0, zone   Normal   1113    351    138     65     38     31     25 ...

Signed-off-by: Ye Liu <liuye@kylinos.cn>
---
 mm/vmstat.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/mm/vmstat.c b/mm/vmstat.c
index bb09c032eecf..e9606457ab91 100644
--- a/mm/vmstat.c
+++ b/mm/vmstat.c
@@ -1574,7 +1574,14 @@ static void frag_show_print(struct seq_file *m, pg_data_t *pgdat,
  */
 static int frag_show(struct seq_file *m, void *arg)
 {
+	int order;
 	pg_data_t *pgdat = (pg_data_t *)arg;
+	/* Print header */
+	seq_printf(m, "%-21s ", "Free pages per order");
+	for (order = 0; order < NR_PAGE_ORDERS; ++order)
+		seq_printf(m, "%6d ", order);
+	seq_putc(m, '\n');
+
 	walk_zones_in_node(m, pgdat, true, false, frag_show_print);
 	return 0;
 }
-- 
2.43.0



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-09-18  9:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-09-18  7:17 [PATCH] mm/vmstat: add header line to /proc/buddyinfo output Ye Liu
2025-09-18  7:29 ` Michal Hocko
2025-09-18  8:11   ` Ye Liu
2025-09-18  8:16     ` David Hildenbrand
2025-09-18  8:31       ` Ye Liu
2025-09-18  8:49         ` Michal Hocko
2025-09-18  9:00           ` Ye Liu
2025-09-18  8:50         ` David Hildenbrand

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox