summaryrefslogtreecommitdiff
path: root/mm/memcontrol.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/memcontrol.c')
-rw-r--r--mm/memcontrol.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 32c7342df4bf..451523c3bd4e 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -3395,13 +3395,8 @@ static void memcg_create_cache_work_func(struct work_struct *w)
struct create_work *cw = container_of(w, struct create_work, work);
struct mem_cgroup *memcg = cw->memcg;
struct kmem_cache *cachep = cw->cachep;
- struct kmem_cache *new;
- new = kmem_cache_create_memcg(memcg, cachep->name,
- cachep->object_size, cachep->align,
- cachep->flags & ~SLAB_PANIC, cachep->ctor, cachep);
- if (new)
- new->allocflags |= __GFP_KMEMCG;
+ kmem_cache_create_memcg(memcg, cachep);
css_put(&memcg->css);
kfree(cw);
}