linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/page_alloc: Split per cpu page lists and zone stats -fix -fix
@ 2021-05-16 14:07 Mel Gorman
  0 siblings, 0 replies; only message in thread
From: Mel Gorman @ 2021-05-16 14:07 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Chuck Lever, Jesper Dangaard Brouer, Thomas Gleixner,
	Sebastian Andrzej Siewior, Peter Zijlstra, Ingo Molnar,
	Michal Hocko, Vlastimil Babka, Linux-MM, Linux-RT-Users, LKML

mm/ is not W=1 clean for make allnoconfig but this patch accidentally
made it worse for i386 with the warning

  mm/vmstat.c: In function ‘refresh_cpu_vm_stats’:
  mm/vmstat.c:785:34: warning: unused variable ‘pcp’ [-Wunused-variable]
     struct per_cpu_pages __percpu *pcp = zone->per_cpu_pageset;
                                    ^~~

This is a second fix to the mmotm patch
mm-page_alloc-split-per-cpu-page-lists-and-zone-stats.patch.

Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
---
 mm/vmstat.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/mm/vmstat.c b/mm/vmstat.c
index a2c3f58253be..f1400ba46beb 100644
--- a/mm/vmstat.c
+++ b/mm/vmstat.c
@@ -782,7 +782,9 @@ static int refresh_cpu_vm_stats(bool do_pagesets)
 
 	for_each_populated_zone(zone) {
 		struct per_cpu_zonestat __percpu *pzstats = zone->per_cpu_zonestats;
+#ifdef CONFIG_NUMA
 		struct per_cpu_pages __percpu *pcp = zone->per_cpu_pageset;
+#endif
 
 		for (i = 0; i < NR_VM_ZONE_STAT_ITEMS; i++) {
 			int v;

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-05-16 14:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16 14:07 [PATCH] mm/page_alloc: Split per cpu page lists and zone stats -fix -fix Mel Gorman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).