mm/sl[aou]b: Move duping of slab name to slab_common.c
authorChristoph Lameter <cl@linux.com>
Tue, 4 Sep 2012 23:18:33 +0000 (23:18 +0000)
committerPekka Enberg <penberg@kernel.org>
Wed, 5 Sep 2012 09:00:36 +0000 (12:00 +0300)
commitdb265eca77000c5dafc5608975afe8dafb2a02d5
tree1c33709fa115e8e814e515f4ee535314ed090ab1
parent12c3667fb780e20360ad0bde32dfb3591ef609ad
mm/sl[aou]b: Move duping of slab name to slab_common.c

Duping of the slabname has to be done by each slab. Moving this code to
slab_common avoids duplicate implementations.

With this patch we have common string handling for all slab allocators.
Strings passed to kmem_cache_create() are copied internally. Subsystems
can create temporary strings to create slab caches.

Slabs allocated in early states of bootstrap will never be freed (and
those can never be freed since they are essential to slab allocator
operations).  During bootstrap we therefore do not have to worry about
duping names.

Reviewed-by: Glauber Costa <glommer@parallels.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
mm/slab_common.c
mm/slub.c