All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix print order in show_free_areas()
@ 2017-03-24 17:48 Alexander Polakov
  2017-04-03 22:11 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Polakov @ 2017-03-24 17:48 UTC (permalink / raw)
  To: linux-mm

Better seen in context: https://github.com/torvalds/linux/blob/master/m
m/page_alloc.c#L4500

Signed-off-by: Alexander Polyakov <apolyakov@beget.com>

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 8afb60c..7b528c7 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4398,13 +4398,13 @@ void show_free_areas(unsigned int filter)
A 			K(node_page_state(pgdat, NR_FILE_MAPPED)),
A 			K(node_page_state(pgdat, NR_FILE_DIRTY)),
A 			K(node_page_state(pgdat, NR_WRITEBACK)),
+			K(node_page_state(pgdat, NR_SHMEM)),
A #ifdef CONFIG_TRANSPARENT_HUGEPAGE
A 			K(node_page_state(pgdat, NR_SHMEM_THPS) *
HPAGE_PMD_NR),
A 			K(node_page_state(pgdat, NR_SHMEM_PMDMAPPED)
A 					* HPAGE_PMD_NR),
A 			K(node_page_state(pgdat, NR_ANON_THPS) *
HPAGE_PMD_NR),
A #endif
-			K(node_page_state(pgdat, NR_SHMEM)),
A 			K(node_page_state(pgdat, NR_WRITEBACK_TEMP)),
A 			K(node_page_state(pgdat, NR_UNSTABLE_NFS)),
A 			node_page_state(pgdat, NR_PAGES_SCANNED),

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2017-04-04 14:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-24 17:48 [PATCH] Fix print order in show_free_areas() Alexander Polakov
2017-04-03 22:11 ` Andrew Morton
2017-04-04 14:19   ` Mel Gorman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.