diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 28 | ||||
-rw-r--r-- | init/main.c | 2 |
2 files changed, 24 insertions, 6 deletions
diff --git a/init/Kconfig b/init/Kconfig index cc917d3ec858..0a2c4bcf179e 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -528,13 +528,29 @@ config RCU_USER_QS | |||
528 | config CONTEXT_TRACKING_FORCE | 528 | config CONTEXT_TRACKING_FORCE |
529 | bool "Force context tracking" | 529 | bool "Force context tracking" |
530 | depends on CONTEXT_TRACKING | 530 | depends on CONTEXT_TRACKING |
531 | default CONTEXT_TRACKING | 531 | default y if !NO_HZ_FULL |
532 | help | 532 | help |
533 | Probe on user/kernel boundaries by default in order to | 533 | The major pre-requirement for full dynticks to work is to |
534 | test the features that rely on it such as userspace RCU extended | 534 | support the context tracking subsystem. But there are also |
535 | quiescent states. | 535 | other dependencies to provide in order to make the full |
536 | This test is there for debugging until we have a real user like the | 536 | dynticks working. |
537 | full dynticks mode. | 537 | |
538 | This option stands for testing when an arch implements the | ||
539 | context tracking backend but doesn't yet fullfill all the | ||
540 | requirements to make the full dynticks feature working. | ||
541 | Without the full dynticks, there is no way to test the support | ||
542 | for context tracking and the subsystems that rely on it: RCU | ||
543 | userspace extended quiescent state and tickless cputime | ||
544 | accounting. This option copes with the absence of the full | ||
545 | dynticks subsystem by forcing the context tracking on all | ||
546 | CPUs in the system. | ||
547 | |||
548 | Say Y only if you're working on the developpement of an | ||
549 | architecture backend for the context tracking. | ||
550 | |||
551 | Say N otherwise, this option brings an overhead that you | ||
552 | don't want in production. | ||
553 | |||
538 | 554 | ||
539 | config RCU_FANOUT | 555 | config RCU_FANOUT |
540 | int "Tree-based hierarchical RCU fanout value" | 556 | int "Tree-based hierarchical RCU fanout value" |
diff --git a/init/main.c b/init/main.c index d03d2ec2eacf..af310afbef28 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -75,6 +75,7 @@ | |||
75 | #include <linux/blkdev.h> | 75 | #include <linux/blkdev.h> |
76 | #include <linux/elevator.h> | 76 | #include <linux/elevator.h> |
77 | #include <linux/sched_clock.h> | 77 | #include <linux/sched_clock.h> |
78 | #include <linux/context_tracking.h> | ||
78 | 79 | ||
79 | #include <asm/io.h> | 80 | #include <asm/io.h> |
80 | #include <asm/bugs.h> | 81 | #include <asm/bugs.h> |
@@ -545,6 +546,7 @@ asmlinkage void __init start_kernel(void) | |||
545 | idr_init_cache(); | 546 | idr_init_cache(); |
546 | rcu_init(); | 547 | rcu_init(); |
547 | tick_nohz_init(); | 548 | tick_nohz_init(); |
549 | context_tracking_init(); | ||
548 | radix_tree_init(); | 550 | radix_tree_init(); |
549 | /* init some links before init_ISA_irqs() */ | 551 | /* init some links before init_ISA_irqs() */ |
550 | early_irq_init(); | 552 | early_irq_init(); |