Skip to content

Commit

Permalink
mm/sl[aou]b: Move list_add() to slab_common.c
Browse files Browse the repository at this point in the history
Move the code to append the new kmem_cache to the list of slab caches to
the kmem_cache_create code in the shared code.

This is possible now since the acquisition of the mutex was moved into
kmem_cache_create().

Acked-by: David Rientjes <[email protected]>
Reviewed-by: Glauber Costa <[email protected]>
Reviewed-by: Joonsoo Kim <[email protected]>
Signed-off-by: Christoph Lameter <[email protected]>
Signed-off-by: Pekka Enberg <[email protected]>
  • Loading branch information
Christoph Lameter authored and penberg committed Sep 5, 2012
1 parent 686d550 commit 7c9adf5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
7 changes: 5 additions & 2 deletions mm/slab.c
Original file line number Diff line number Diff line change
Expand Up @@ -1680,13 +1680,15 @@ void __init kmem_cache_init(void)
ARCH_KMALLOC_FLAGS|SLAB_PANIC,
NULL);

list_add(&sizes[INDEX_AC].cs_cachep->list, &slab_caches);
if (INDEX_AC != INDEX_L3) {
sizes[INDEX_L3].cs_cachep =
__kmem_cache_create(names[INDEX_L3].name,
sizes[INDEX_L3].cs_size,
ARCH_KMALLOC_MINALIGN,
ARCH_KMALLOC_FLAGS|SLAB_PANIC,
NULL);
list_add(&sizes[INDEX_L3].cs_cachep->list, &slab_caches);
}

slab_early_init = 0;
Expand All @@ -1705,6 +1707,7 @@ void __init kmem_cache_init(void)
ARCH_KMALLOC_MINALIGN,
ARCH_KMALLOC_FLAGS|SLAB_PANIC,
NULL);
list_add(&sizes->cs_cachep->list, &slab_caches);
}
#ifdef CONFIG_ZONE_DMA
sizes->cs_dmacachep = __kmem_cache_create(
Expand All @@ -1714,6 +1717,7 @@ void __init kmem_cache_init(void)
ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
SLAB_PANIC,
NULL);
list_add(&sizes->cs_dmacachep->list, &slab_caches);
#endif
sizes++;
names++;
Expand Down Expand Up @@ -2583,6 +2587,7 @@ __kmem_cache_create (const char *name, size_t size, size_t align,
}
cachep->ctor = ctor;
cachep->name = name;
cachep->refcount = 1;

if (setup_cpu_cache(cachep, gfp)) {
__kmem_cache_destroy(cachep);
Expand All @@ -2599,8 +2604,6 @@ __kmem_cache_create (const char *name, size_t size, size_t align,
slab_set_debugobj_lock_classes(cachep);
}

/* cache setup completed, link it into the list */
list_add(&cachep->list, &slab_caches);
return cachep;
}

Expand Down
7 changes: 7 additions & 0 deletions mm/slab_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ struct kmem_cache *kmem_cache_create(const char *name, size_t size, size_t align
if (!s)
err = -ENOSYS; /* Until __kmem_cache_create returns code */

/*
* Check if the slab has actually been created and if it was a
* real instatiation. Aliases do not belong on the list
*/
if (s && s->refcount == 1)
list_add(&s->list, &slab_caches);

out_locked:
mutex_unlock(&slab_mutex);
put_online_cpus();
Expand Down
4 changes: 4 additions & 0 deletions mm/slob.c
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,10 @@ struct kmem_cache *__kmem_cache_create(const char *name, size_t size,

void kmem_cache_destroy(struct kmem_cache *c)
{
mutex_lock(&slab_mutex);
list_del(&c->list);
mutex_unlock(&slab_mutex);

kmemleak_free(c);
if (c->flags & SLAB_DESTROY_BY_RCU)
rcu_barrier();
Expand Down
2 changes: 0 additions & 2 deletions mm/slub.c
Original file line number Diff line number Diff line change
Expand Up @@ -3975,15 +3975,13 @@ struct kmem_cache *__kmem_cache_create(const char *name, size_t size,
size, align, flags, ctor)) {
int r;

list_add(&s->list, &slab_caches);
mutex_unlock(&slab_mutex);
r = sysfs_slab_add(s);
mutex_lock(&slab_mutex);

if (!r)
return s;

list_del(&s->list);
kmem_cache_close(s);
}
kmem_cache_free(kmem_cache, s);
Expand Down

0 comments on commit 7c9adf5

Please sign in to comment.