* [merged] mm-slab-remove-redundant-assignments-for-slab_state.patch removed from -mm tree
@ 2018-02-01 19:30 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2018-02-01 19:30 UTC (permalink / raw)
To: cl, iamjoonsoo.kim, mm-commits, osalvador, penberg, rientjes
The patch titled
Subject: mm/slab.c: remove redundant assignments for slab_state
has been removed from the -mm tree. Its filename was
mm-slab-remove-redundant-assignments-for-slab_state.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
From: Oscar Salvador <osalvador@techadventures.net>
Subject: 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/20171215134452.GA1920@techadventures.net
Signed-off-by: Oscar Salvador <osalvador@techadventures.net>
Acked-by: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/slab.c | 4 ----
1 file changed, 4 deletions(-)
diff -puN mm/slab.c~mm-slab-remove-redundant-assignments-for-slab_state mm/slab.c
--- a/mm/slab.c~mm-slab-remove-redundant-assignments-for-slab_state
+++ a/mm/slab.c
@@ -1316,8 +1316,6 @@ void __init kmem_cache_init_late(void)
{
struct kmem_cache *cachep;
- slab_state = UP;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2018-02-01 19:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-01 19:30 [merged] mm-slab-remove-redundant-assignments-for-slab_state.patch removed from -mm tree akpm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox