From: Vladimir Davydov Date: Thu, 2 Jan 2014 20:58:47 +0000 (-0800) Subject: memcg: fix memcg_size() calculation X-Git-Tag: upstream/snapshot3+hdmi~3706^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=695c60830764945cf61a2cc623eb1392d137223e;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git memcg: fix memcg_size() calculation The mem_cgroup structure contains nr_node_ids pointers to mem_cgroup_per_node objects, not the objects themselves. Signed-off-by: Vladimir Davydov Acked-by: Michal Hocko Cc: Glauber Costa Cc: Johannes Weiner Cc: Balbir Singh Cc: KAMEZAWA Hiroyuki Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/memcontrol.c b/mm/memcontrol.c index bf5e894..7f1a356 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -338,7 +338,7 @@ struct mem_cgroup { static size_t memcg_size(void) { return sizeof(struct mem_cgroup) + - nr_node_ids * sizeof(struct mem_cgroup_per_node); + nr_node_ids * sizeof(struct mem_cgroup_per_node *); } /* internal only representation about the status of kmem accounting. */