diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 6 | ||||
-rw-r--r-- | init/main.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/init/Kconfig b/init/Kconfig index 2d964fa40f5b..4986ecc49e65 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -827,6 +827,11 @@ config SCHED_AUTOGROUP | |||
827 | desktop applications. Task group autogeneration is currently based | 827 | desktop applications. Task group autogeneration is currently based |
828 | upon task session. | 828 | upon task session. |
829 | 829 | ||
830 | config SCHED_TTWU_QUEUE | ||
831 | bool | ||
832 | depends on !SPARC32 | ||
833 | default y | ||
834 | |||
830 | config MM_OWNER | 835 | config MM_OWNER |
831 | bool | 836 | bool |
832 | 837 | ||
@@ -1226,7 +1231,6 @@ config SLAB | |||
1226 | per cpu and per node queues. | 1231 | per cpu and per node queues. |
1227 | 1232 | ||
1228 | config SLUB | 1233 | config SLUB |
1229 | depends on BROKEN || NUMA || !DISCONTIGMEM | ||
1230 | bool "SLUB (Unqueued Allocator)" | 1234 | bool "SLUB (Unqueued Allocator)" |
1231 | help | 1235 | help |
1232 | SLUB is a slab allocator that minimizes cache line usage | 1236 | SLUB is a slab allocator that minimizes cache line usage |
diff --git a/init/main.c b/init/main.c index 4a9479ef4540..48df882d51d2 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -580,8 +580,8 @@ asmlinkage void __init start_kernel(void) | |||
580 | #endif | 580 | #endif |
581 | page_cgroup_init(); | 581 | page_cgroup_init(); |
582 | enable_debug_pagealloc(); | 582 | enable_debug_pagealloc(); |
583 | kmemleak_init(); | ||
584 | debug_objects_mem_init(); | 583 | debug_objects_mem_init(); |
584 | kmemleak_init(); | ||
585 | setup_per_cpu_pageset(); | 585 | setup_per_cpu_pageset(); |
586 | numa_policy_init(); | 586 | numa_policy_init(); |
587 | if (late_time_init) | 587 | if (late_time_init) |