mm/slab.c: remove redundant assignments for slab_state
authorOscar Salvador <[email protected]>
Thu, 1 Feb 2018 00:15:39 +0000 (16:15 -0800)
committerLinus Torvalds <[email protected]>
Thu, 1 Feb 2018 01:18:35 +0000 (17:18 -0800)
commit84ebb5827d015c1045429d018bf9a48f95f082a6
treeb9aaaf0e7b135f7b406dcd35f66f2503a841b54d
parent692ae74aaf226a557d88d5412a1764c09e63a193
mm/slab.c: remove redundant assignments for slab_state

slab_state is being set to "UP" in create_kmalloc_caches(), and later on
we set it again in kmem_cache_init_late(), but slab_state does not
change in the meantime.

Remove the redundant assignment from kmem_cache_init_late().

And unless I overlooked anything, the same goes for "slab_state = FULL".
slab_state is set to "FULL" in kmem_cache_init_late(), but it is later
being set again in cpucache_init(), which gets called from
do_initcall_level().  So remove the assignment from cpucache_init() as
well.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Oscar Salvador <[email protected]>
Acked-by: Christoph Lameter <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: David Rientjes <[email protected]>
Cc: Joonsoo Kim <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/slab.c