diff options
author | Qiang Huang <h.huangqiang@huawei.com> | 2013-11-12 18:08:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:10 -0500 |
commit | 2ade4de871172b17dd81b336cf0488a83885ffde (patch) | |
tree | 9bdebd7f22388e23386c35cdfe0f9a965b414b36 /mm/slab_common.c | |
parent | f35c3a8eed52878c2dde9c4b9a87b276127f7f8d (diff) |
memcg, kmem: rename cache_from_memcg to cache_from_memcg_idx
We can't see the relationship with memcg from the parameters,
so the name with memcg_idx would be more reasonable.
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
Reviewed-by: Pekka Enberg <penberg@kernel.org>
Acked-by: David Rientjes <rientjes@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Glauber Costa <glommer@parallels.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slab_common.c')
-rw-r--r-- | mm/slab_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slab_common.c b/mm/slab_common.c index e2e98af703ea..0b7bb399b0e4 100644 --- a/mm/slab_common.c +++ b/mm/slab_common.c | |||
@@ -571,7 +571,7 @@ memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info) | |||
571 | return; | 571 | return; |
572 | 572 | ||
573 | for_each_memcg_cache_index(i) { | 573 | for_each_memcg_cache_index(i) { |
574 | c = cache_from_memcg(s, i); | 574 | c = cache_from_memcg_idx(s, i); |
575 | if (!c) | 575 | if (!c) |
576 | continue; | 576 | continue; |
577 | 577 | ||