Commit 2ade4de8 authored by Qiang Huang's avatar Qiang Huang Committed by Linus Torvalds

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: default avatarQiang Huang <h.huangqiang@huawei.com>
Reviewed-by: default avatarPekka Enberg <penberg@kernel.org>
Acked-by: default avatarDavid 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: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f35c3a8e
...@@ -3982,7 +3982,7 @@ static int do_tune_cpucache(struct kmem_cache *cachep, int limit, ...@@ -3982,7 +3982,7 @@ static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
VM_BUG_ON(!mutex_is_locked(&slab_mutex)); VM_BUG_ON(!mutex_is_locked(&slab_mutex));
for_each_memcg_cache_index(i) { for_each_memcg_cache_index(i) {
c = cache_from_memcg(cachep, i); c = cache_from_memcg_idx(cachep, i);
if (c) if (c)
/* return value determined by the parent cache only */ /* return value determined by the parent cache only */
__do_tune_cpucache(c, limit, batchcount, shared, gfp); __do_tune_cpucache(c, limit, batchcount, shared, gfp);
......
...@@ -160,7 +160,8 @@ static inline const char *cache_name(struct kmem_cache *s) ...@@ -160,7 +160,8 @@ static inline const char *cache_name(struct kmem_cache *s)
return s->name; return s->name;
} }
static inline struct kmem_cache *cache_from_memcg(struct kmem_cache *s, int idx) static inline struct kmem_cache *
cache_from_memcg_idx(struct kmem_cache *s, int idx)
{ {
if (!s->memcg_params) if (!s->memcg_params)
return NULL; return NULL;
...@@ -204,7 +205,8 @@ static inline const char *cache_name(struct kmem_cache *s) ...@@ -204,7 +205,8 @@ static inline const char *cache_name(struct kmem_cache *s)
return s->name; return s->name;
} }
static inline struct kmem_cache *cache_from_memcg(struct kmem_cache *s, int idx) static inline struct kmem_cache *
cache_from_memcg_idx(struct kmem_cache *s, int idx)
{ {
return NULL; return NULL;
} }
......
...@@ -571,7 +571,7 @@ memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info) ...@@ -571,7 +571,7 @@ memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
return; return;
for_each_memcg_cache_index(i) { for_each_memcg_cache_index(i) {
c = cache_from_memcg(s, i); c = cache_from_memcg_idx(s, i);
if (!c) if (!c)
continue; continue;
......
...@@ -4983,7 +4983,7 @@ static ssize_t slab_attr_store(struct kobject *kobj, ...@@ -4983,7 +4983,7 @@ static ssize_t slab_attr_store(struct kobject *kobj,
* through the descendants with best-effort propagation. * through the descendants with best-effort propagation.
*/ */
for_each_memcg_cache_index(i) { for_each_memcg_cache_index(i) {
struct kmem_cache *c = cache_from_memcg(s, i); struct kmem_cache *c = cache_from_memcg_idx(s, i);
if (c) if (c)
attribute->store(c, buf, len); attribute->store(c, buf, len);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment