Commit d1b2cf6c authored by Bharata B Rao's avatar Bharata B Rao Committed by Linus Torvalds

mm: memcg/slab: uncharge during kmem_cache_free_bulk()

Object cgroup charging is done for all the objects during allocation, but
during freeing, uncharging ends up happening for only one object in the
case of bulk allocation/freeing.

Fix this by having a separate call to uncharge all the objects from
kmem_cache_free_bulk() and by modifying memcg_slab_free_hook() to take
care of bulk uncharging.

Fixes: 964d4bd3 ("mm: memcg/slab: save obj_cgroup for non-root slab objects"
Signed-off-by: default avatarBharata B Rao <bharata@linux.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Acked-by: default avatarRoman Gushchin <guro@fb.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Shakeel Butt <shakeelb@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Tejun Heo <tj@kernel.org>
Cc: <stable@vger.kernel.org>
Link: https://lkml.kernel.org/r/20201009060423.390479-1-bharata@linux.ibm.comSigned-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7a52d4d8
...@@ -3438,7 +3438,7 @@ void ___cache_free(struct kmem_cache *cachep, void *objp, ...@@ -3438,7 +3438,7 @@ void ___cache_free(struct kmem_cache *cachep, void *objp,
memset(objp, 0, cachep->object_size); memset(objp, 0, cachep->object_size);
kmemleak_free_recursive(objp, cachep->flags); kmemleak_free_recursive(objp, cachep->flags);
objp = cache_free_debugcheck(cachep, objp, caller); objp = cache_free_debugcheck(cachep, objp, caller);
memcg_slab_free_hook(cachep, virt_to_head_page(objp), objp); memcg_slab_free_hook(cachep, &objp, 1);
/* /*
* Skip calling cache_free_alien() when the platform is not numa. * Skip calling cache_free_alien() when the platform is not numa.
......
...@@ -345,30 +345,42 @@ static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s, ...@@ -345,30 +345,42 @@ static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s,
obj_cgroup_put(objcg); obj_cgroup_put(objcg);
} }
static inline void memcg_slab_free_hook(struct kmem_cache *s, struct page *page, static inline void memcg_slab_free_hook(struct kmem_cache *s_orig,
void *p) void **p, int objects)
{ {
struct kmem_cache *s;
struct obj_cgroup *objcg; struct obj_cgroup *objcg;
struct page *page;
unsigned int off; unsigned int off;
int i;
if (!memcg_kmem_enabled()) if (!memcg_kmem_enabled())
return; return;
if (!page_has_obj_cgroups(page)) for (i = 0; i < objects; i++) {
return; if (unlikely(!p[i]))
continue;
off = obj_to_index(s, page, p); page = virt_to_head_page(p[i]);
objcg = page_obj_cgroups(page)[off]; if (!page_has_obj_cgroups(page))
page_obj_cgroups(page)[off] = NULL; continue;
if (!objcg) if (!s_orig)
return; s = page->slab_cache;
else
s = s_orig;
obj_cgroup_uncharge(objcg, obj_full_size(s)); off = obj_to_index(s, page, p[i]);
mod_objcg_state(objcg, page_pgdat(page), cache_vmstat_idx(s), objcg = page_obj_cgroups(page)[off];
-obj_full_size(s)); if (!objcg)
continue;
obj_cgroup_put(objcg); page_obj_cgroups(page)[off] = NULL;
obj_cgroup_uncharge(objcg, obj_full_size(s));
mod_objcg_state(objcg, page_pgdat(page), cache_vmstat_idx(s),
-obj_full_size(s));
obj_cgroup_put(objcg);
}
} }
#else /* CONFIG_MEMCG_KMEM */ #else /* CONFIG_MEMCG_KMEM */
...@@ -406,8 +418,8 @@ static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s, ...@@ -406,8 +418,8 @@ static inline void memcg_slab_post_alloc_hook(struct kmem_cache *s,
{ {
} }
static inline void memcg_slab_free_hook(struct kmem_cache *s, struct page *page, static inline void memcg_slab_free_hook(struct kmem_cache *s,
void *p) void **p, int objects)
{ {
} }
#endif /* CONFIG_MEMCG_KMEM */ #endif /* CONFIG_MEMCG_KMEM */
......
...@@ -3095,7 +3095,7 @@ static __always_inline void do_slab_free(struct kmem_cache *s, ...@@ -3095,7 +3095,7 @@ static __always_inline void do_slab_free(struct kmem_cache *s,
struct kmem_cache_cpu *c; struct kmem_cache_cpu *c;
unsigned long tid; unsigned long tid;
memcg_slab_free_hook(s, page, head); memcg_slab_free_hook(s, &head, 1);
redo: redo:
/* /*
* Determine the currently cpus per cpu slab. * Determine the currently cpus per cpu slab.
...@@ -3257,6 +3257,7 @@ void kmem_cache_free_bulk(struct kmem_cache *s, size_t size, void **p) ...@@ -3257,6 +3257,7 @@ void kmem_cache_free_bulk(struct kmem_cache *s, size_t size, void **p)
if (WARN_ON(!size)) if (WARN_ON(!size))
return; return;
memcg_slab_free_hook(s, p, size);
do { do {
struct detached_freelist df; struct detached_freelist df;
......
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