Skip to content

Commit 7fa0dac

Browse files
Waiman-Longtorvalds
authored andcommitted
mm/memcg: fix incorrect flushing of lruvec data in obj_stock
When mod_objcg_state() is called with a pgdat that is different from that in the obj_stock, the old lruvec data cached in obj_stock are flushed out. Unfortunately, they were flushed to the new pgdat and so the data go to the wrong node. This will screw up the slab data reported in /sys/devices/system/node/node*/meminfo. Fix that by flushing the data to the cached pgdat instead. Link: https://lkml.kernel.org/r/[email protected] Fixes: 68ac5b3 ("mm/memcg: cache vmstat data in percpu memcg_stock_pcp") Signed-off-by: Waiman Long <[email protected]> Acked-by: Michal Hocko <[email protected]> Reviewed-by: Shakeel Butt <[email protected]> Acked-by: Roman Gushchin <[email protected]> Cc: Johannes Weiner <[email protected]> Cc: Vladimir Davydov <[email protected]> Cc: Tejun Heo <[email protected]> Cc: Christoph Lameter <[email protected]> Cc: Pekka Enberg <[email protected]> Cc: David Rientjes <[email protected]> Cc: Joonsoo Kim <[email protected]> Cc: Vlastimil Babka <[email protected]> Cc: Muchun Song <[email protected]> Cc: Alex Shi <[email protected]> Cc: Chris Down <[email protected]> Cc: Yafang Shao <[email protected]> Cc: Wei Yang <[email protected]> Cc: Masayoshi Mizuma <[email protected]> Cc: Xing Zhengjun <[email protected]> Cc: Matthew Wilcox <[email protected]> Cc: Waiman Long <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent eb2faa5 commit 7fa0dac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mm/memcontrol.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3106,13 +3106,15 @@ void mod_objcg_state(struct obj_cgroup *objcg, struct pglist_data *pgdat,
31063106
stock->cached_pgdat = pgdat;
31073107
} else if (stock->cached_pgdat != pgdat) {
31083108
/* Flush the existing cached vmstat data */
3109+
struct pglist_data *oldpg = stock->cached_pgdat;
3110+
31093111
if (stock->nr_slab_reclaimable_b) {
3110-
mod_objcg_mlstate(objcg, pgdat, NR_SLAB_RECLAIMABLE_B,
3112+
mod_objcg_mlstate(objcg, oldpg, NR_SLAB_RECLAIMABLE_B,
31113113
stock->nr_slab_reclaimable_b);
31123114
stock->nr_slab_reclaimable_b = 0;
31133115
}
31143116
if (stock->nr_slab_unreclaimable_b) {
3115-
mod_objcg_mlstate(objcg, pgdat, NR_SLAB_UNRECLAIMABLE_B,
3117+
mod_objcg_mlstate(objcg, oldpg, NR_SLAB_UNRECLAIMABLE_B,
31163118
stock->nr_slab_unreclaimable_b);
31173119
stock->nr_slab_unreclaimable_b = 0;
31183120
}

0 commit comments

Comments
 (0)