diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2015-02-19 13:51:32 -0500 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2015-02-26 15:03:03 -0500 |
commit | ee42571f4381f184e2672dd34ab411e5bf5bd5e0 (patch) | |
tree | 6dc7829e3529fae2f519ab8dc1a665f8109cc311 /init | |
parent | 5afff48bdf7481570c9385a8a674a81ffb8f09ee (diff) |
rcu: Add Kconfig option to expedite grace periods during boot
This commit adds a CONFIG_RCU_EXPEDITE_BOOT Kconfig parameter
that emulates a very early boot rcu_expedite_gp(). A late-boot
call to rcu_end_inkernel_boot() will provide the corresponding
rcu_unexpedite_gp(). The late-boot call to rcu_end_inkernel_boot()
should be made just before init is spawned.
According to Arjan:
> To show the boot time, I'm using the timestamp of the "Write protecting"
> line, that's pretty much the last thing we print prior to ring 3 execution.
>
> A kernel with default RCU behavior (inside KVM, only virtual devices)
> looks like this:
>
> [ 0.038724] Write protecting the kernel read-only data: 10240k
>
> a kernel with expedited RCU (using the command line option, so that I
> don't have to recompile between measurements and thus am completely
> oranges-to-oranges)
>
> [ 0.031768] Write protecting the kernel read-only data: 10240k
>
> which, in percentage, is an 18% improvement.
Reported-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Tested-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig index f5dbc6d4261b..9a0592516f48 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -791,6 +791,19 @@ config RCU_NOCB_CPU_ALL | |||
791 | 791 | ||
792 | endchoice | 792 | endchoice |
793 | 793 | ||
794 | config RCU_EXPEDITE_BOOT | ||
795 | bool | ||
796 | default n | ||
797 | help | ||
798 | This option enables expedited grace periods at boot time, | ||
799 | as if rcu_expedite_gp() had been invoked early in boot. | ||
800 | The corresponding rcu_unexpedite_gp() is invoked from | ||
801 | rcu_end_inkernel_boot(), which is intended to be invoked | ||
802 | at the end of the kernel-only boot sequence, just before | ||
803 | init is exec'ed. | ||
804 | |||
805 | Accept the default if unsure. | ||
806 | |||
794 | endmenu # "RCU Subsystem" | 807 | endmenu # "RCU Subsystem" |
795 | 808 | ||
796 | config BUILD_BIN2C | 809 | config BUILD_BIN2C |