diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 68 | ||||
-rw-r--r-- | init/do_mounts.c | 2 | ||||
-rw-r--r-- | init/main.c | 8 |
3 files changed, 72 insertions, 6 deletions
diff --git a/init/Kconfig b/init/Kconfig index c9728992a776..8dfd094e6875 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -393,7 +393,6 @@ config PREEMPT_RCU | |||
393 | 393 | ||
394 | config RCU_TRACE | 394 | config RCU_TRACE |
395 | bool "Enable tracing for RCU" | 395 | bool "Enable tracing for RCU" |
396 | depends on TREE_RCU || TREE_PREEMPT_RCU | ||
397 | help | 396 | help |
398 | This option provides tracing in RCU which presents stats | 397 | This option provides tracing in RCU which presents stats |
399 | in debugfs for debugging RCU implementation. | 398 | in debugfs for debugging RCU implementation. |
@@ -459,6 +458,60 @@ config TREE_RCU_TRACE | |||
459 | TREE_PREEMPT_RCU implementations, permitting Makefile to | 458 | TREE_PREEMPT_RCU implementations, permitting Makefile to |
460 | trivially select kernel/rcutree_trace.c. | 459 | trivially select kernel/rcutree_trace.c. |
461 | 460 | ||
461 | config RCU_BOOST | ||
462 | bool "Enable RCU priority boosting" | ||
463 | depends on RT_MUTEXES && TINY_PREEMPT_RCU | ||
464 | default n | ||
465 | help | ||
466 | This option boosts the priority of preempted RCU readers that | ||
467 | block the current preemptible RCU grace period for too long. | ||
468 | This option also prevents heavy loads from blocking RCU | ||
469 | callback invocation for all flavors of RCU. | ||
470 | |||
471 | Say Y here if you are working with real-time apps or heavy loads | ||
472 | Say N here if you are unsure. | ||
473 | |||
474 | config RCU_BOOST_PRIO | ||
475 | int "Real-time priority to boost RCU readers to" | ||
476 | range 1 99 | ||
477 | depends on RCU_BOOST | ||
478 | default 1 | ||
479 | help | ||
480 | This option specifies the real-time priority to which preempted | ||
481 | RCU readers are to be boosted. If you are working with CPU-bound | ||
482 | real-time applications, you should specify a priority higher then | ||
483 | the highest-priority CPU-bound application. | ||
484 | |||
485 | Specify the real-time priority, or take the default if unsure. | ||
486 | |||
487 | config RCU_BOOST_DELAY | ||
488 | int "Milliseconds to delay boosting after RCU grace-period start" | ||
489 | range 0 3000 | ||
490 | depends on RCU_BOOST | ||
491 | default 500 | ||
492 | help | ||
493 | This option specifies the time to wait after the beginning of | ||
494 | a given grace period before priority-boosting preempted RCU | ||
495 | readers blocking that grace period. Note that any RCU reader | ||
496 | blocking an expedited RCU grace period is boosted immediately. | ||
497 | |||
498 | Accept the default if unsure. | ||
499 | |||
500 | config SRCU_SYNCHRONIZE_DELAY | ||
501 | int "Microseconds to delay before waiting for readers" | ||
502 | range 0 20 | ||
503 | default 10 | ||
504 | help | ||
505 | This option controls how long SRCU delays before entering its | ||
506 | loop waiting on SRCU readers. The purpose of this loop is | ||
507 | to avoid the unconditional context-switch penalty that would | ||
508 | otherwise be incurred if there was an active SRCU reader, | ||
509 | in a manner similar to adaptive locking schemes. This should | ||
510 | be set to be a bit longer than the common-case SRCU read-side | ||
511 | critical-section overhead. | ||
512 | |||
513 | Accept the default if unsure. | ||
514 | |||
462 | endmenu # "RCU Subsystem" | 515 | endmenu # "RCU Subsystem" |
463 | 516 | ||
464 | config IKCONFIG | 517 | config IKCONFIG |
@@ -741,6 +794,19 @@ config NET_NS | |||
741 | 794 | ||
742 | endif # NAMESPACES | 795 | endif # NAMESPACES |
743 | 796 | ||
797 | config SCHED_AUTOGROUP | ||
798 | bool "Automatic process group scheduling" | ||
799 | select EVENTFD | ||
800 | select CGROUPS | ||
801 | select CGROUP_SCHED | ||
802 | select FAIR_GROUP_SCHED | ||
803 | help | ||
804 | This option optimizes the scheduler for common desktop workloads by | ||
805 | automatically creating and populating task groups. This separation | ||
806 | of workloads isolates aggressive CPU burners (like build jobs) from | ||
807 | desktop applications. Task group autogeneration is currently based | ||
808 | upon task session. | ||
809 | |||
744 | config MM_OWNER | 810 | config MM_OWNER |
745 | bool | 811 | bool |
746 | 812 | ||
diff --git a/init/do_mounts.c b/init/do_mounts.c index 830aaec9c7d5..2b54bef33b55 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c | |||
@@ -93,7 +93,7 @@ no_match: | |||
93 | * | 93 | * |
94 | * Returns the matching dev_t on success or 0 on failure. | 94 | * Returns the matching dev_t on success or 0 on failure. |
95 | */ | 95 | */ |
96 | static dev_t __init devt_from_partuuid(char *uuid_str) | 96 | static dev_t devt_from_partuuid(char *uuid_str) |
97 | { | 97 | { |
98 | dev_t res = 0; | 98 | dev_t res = 0; |
99 | struct device *dev = NULL; | 99 | struct device *dev = NULL; |
diff --git a/init/main.c b/init/main.c index 8646401f7a0e..00799c1d4628 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -67,6 +67,7 @@ | |||
67 | #include <linux/sfi.h> | 67 | #include <linux/sfi.h> |
68 | #include <linux/shmem_fs.h> | 68 | #include <linux/shmem_fs.h> |
69 | #include <linux/slab.h> | 69 | #include <linux/slab.h> |
70 | #include <linux/perf_event.h> | ||
70 | 71 | ||
71 | #include <asm/io.h> | 72 | #include <asm/io.h> |
72 | #include <asm/bugs.h> | 73 | #include <asm/bugs.h> |
@@ -603,6 +604,8 @@ asmlinkage void __init start_kernel(void) | |||
603 | "enabled *very* early, fixing it\n"); | 604 | "enabled *very* early, fixing it\n"); |
604 | local_irq_disable(); | 605 | local_irq_disable(); |
605 | } | 606 | } |
607 | idr_init_cache(); | ||
608 | perf_event_init(); | ||
606 | rcu_init(); | 609 | rcu_init(); |
607 | radix_tree_init(); | 610 | radix_tree_init(); |
608 | /* init some links before init_ISA_irqs() */ | 611 | /* init some links before init_ISA_irqs() */ |
@@ -658,7 +661,6 @@ asmlinkage void __init start_kernel(void) | |||
658 | enable_debug_pagealloc(); | 661 | enable_debug_pagealloc(); |
659 | kmemleak_init(); | 662 | kmemleak_init(); |
660 | debug_objects_mem_init(); | 663 | debug_objects_mem_init(); |
661 | idr_init_cache(); | ||
662 | setup_per_cpu_pageset(); | 664 | setup_per_cpu_pageset(); |
663 | numa_policy_init(); | 665 | numa_policy_init(); |
664 | if (late_time_init) | 666 | if (late_time_init) |
@@ -775,9 +777,6 @@ static void __init do_initcalls(void) | |||
775 | 777 | ||
776 | for (fn = __early_initcall_end; fn < __initcall_end; fn++) | 778 | for (fn = __early_initcall_end; fn < __initcall_end; fn++) |
777 | do_one_initcall(*fn); | 779 | do_one_initcall(*fn); |
778 | |||
779 | /* Make sure there is no pending stuff from the initcall sequence */ | ||
780 | flush_scheduled_work(); | ||
781 | } | 780 | } |
782 | 781 | ||
783 | /* | 782 | /* |
@@ -882,6 +881,7 @@ static int __init kernel_init(void * unused) | |||
882 | smp_prepare_cpus(setup_max_cpus); | 881 | smp_prepare_cpus(setup_max_cpus); |
883 | 882 | ||
884 | do_pre_smp_initcalls(); | 883 | do_pre_smp_initcalls(); |
884 | lockup_detector_init(); | ||
885 | 885 | ||
886 | smp_init(); | 886 | smp_init(); |
887 | sched_init_smp(); | 887 | sched_init_smp(); |