diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-06 14:44:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-06 14:44:08 -0400 |
commit | b57bdda58cda0aaf6def042d101dd85977a286ed (patch) | |
tree | 7f63afddb8275d67214d7a89cfc8a65815e79d42 /mm/slab.c | |
parent | cc41f5cede3c63836d1c0958204630b07f5b5ee7 (diff) | |
parent | 415cb47998c54195710d413c3d95e37a9339c1e8 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
slub: Allow removal of slab caches during boot
Revert "slub: Allow removal of slab caches during boot"
slub numa: Fix rare allocation from unexpected node
slab: use deferable timers for its periodic housekeeping
slub: Use kmem_cache flags to detect if slab is in debugging mode.
slub: Allow removal of slab caches during boot
slub: Check kasprintf results in kmem_cache_init()
SLUB: Constants need UL
slub: Use a constant for a unspecified node.
SLOB: Free objects to their own list
slab: fix caller tracking on !CONFIG_DEBUG_SLAB && CONFIG_TRACING
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -860,7 +860,7 @@ static void __cpuinit start_cpu_timer(int cpu) | |||
860 | */ | 860 | */ |
861 | if (keventd_up() && reap_work->work.func == NULL) { | 861 | if (keventd_up() && reap_work->work.func == NULL) { |
862 | init_reap_node(cpu); | 862 | init_reap_node(cpu); |
863 | INIT_DELAYED_WORK(reap_work, cache_reap); | 863 | INIT_DELAYED_WORK_DEFERRABLE(reap_work, cache_reap); |
864 | schedule_delayed_work_on(cpu, reap_work, | 864 | schedule_delayed_work_on(cpu, reap_work, |
865 | __round_jiffies_relative(HZ, cpu)); | 865 | __round_jiffies_relative(HZ, cpu)); |
866 | } | 866 | } |