aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2012-10-16 17:00:19 -0400
committerSteven Rostedt <rostedt@goodmis.org>2012-10-20 14:33:45 -0400
commitd52c71af7f8e2df934e6492edd7b56c38465ee26 (patch)
treebdf8faacb7b003d53dbf2b69205994a64e94e217
parentb26582e21c43621814aaef6423036c4ae7725162 (diff)
slab: Fix up stable merge of slab init_lock_keys()
There was a stable fix that moved the init_lock_keys() to after the enable_cpucache(). But -rt changed this function to init_cachep_lock_keys(). This moves the init afterwards to match the stable fix. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--mm/slab.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/mm/slab.c b/mm/slab.c
index 81d3481b7eb3..fff347f5913c 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -1747,15 +1747,12 @@ void __init kmem_cache_init_late(void)
/* 6) resize the head arrays to their final sizes */
mutex_lock(&cache_chain_mutex);
list_for_each_entry(cachep, &cache_chain, next) {
- init_cachep_lock_keys(cachep);
if (enable_cpucache(cachep, GFP_NOWAIT))
BUG();
+ init_cachep_lock_keys(cachep);
}
mutex_unlock(&cache_chain_mutex);
- /* Annotate slab for lockdep -- annotate the malloc caches */
- init_lock_keys();
-
/* Done! */
g_cpucache_up = FULL;