diff options
-rw-r--r-- | mm/slab.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1279,6 +1279,20 @@ static int __cpuinit cpuup_callback(struct notifier_block *nfb, | |||
1279 | start_cpu_timer(cpu); | 1279 | start_cpu_timer(cpu); |
1280 | break; | 1280 | break; |
1281 | #ifdef CONFIG_HOTPLUG_CPU | 1281 | #ifdef CONFIG_HOTPLUG_CPU |
1282 | case CPU_DOWN_PREPARE: | ||
1283 | /* | ||
1284 | * Shutdown cache reaper. Note that the cache_chain_mutex is | ||
1285 | * held so that if cache_reap() is invoked it cannot do | ||
1286 | * anything expensive but will only modify reap_work | ||
1287 | * and reschedule the timer. | ||
1288 | */ | ||
1289 | cancel_rearming_delayed_work(&per_cpu(reap_work, cpu)); | ||
1290 | /* Now the cache_reaper is guaranteed to be not running. */ | ||
1291 | per_cpu(reap_work, cpu).work.func = NULL; | ||
1292 | break; | ||
1293 | case CPU_DOWN_FAILED: | ||
1294 | start_cpu_timer(cpu); | ||
1295 | break; | ||
1282 | case CPU_DEAD: | 1296 | case CPU_DEAD: |
1283 | /* | 1297 | /* |
1284 | * Even if all the cpus of a node are down, we don't free the | 1298 | * Even if all the cpus of a node are down, we don't free the |