diff options
author | Paul E. McKenney <paul.mckenney@linaro.org> | 2012-01-17 17:36:51 -0500 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2012-02-21 12:03:50 -0500 |
commit | 9b9ec9b90ef481e182927989963274dc2697f9a6 (patch) | |
tree | 977b0fc115b279c25de3200a6bd4d67f1eff83c8 /Documentation | |
parent | a858af2875fb291d0f4b0a4419fefbf03c2379c0 (diff) |
rcutorture: Permit holding off CPU-hotplug operations during boot
When rcutorture is started automatically at boot time, it might well
also start CPU-hotplug operations at that time, which might not be
desirable. This commit therefore adds an rcutorture parameter that
allows CPU-hotplug operations to be held off for the specified number
of seconds after the start of boot.
Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/RCU/torture.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Documentation/RCU/torture.txt b/Documentation/RCU/torture.txt index d67068d0d2b9..01a809b1dbc6 100644 --- a/Documentation/RCU/torture.txt +++ b/Documentation/RCU/torture.txt | |||
@@ -69,6 +69,13 @@ onoff_interval | |||
69 | CPU-hotplug operations regardless of what value is | 69 | CPU-hotplug operations regardless of what value is |
70 | specified for onoff_interval. | 70 | specified for onoff_interval. |
71 | 71 | ||
72 | onoff_holdoff The number of seconds to wait until starting CPU-hotplug | ||
73 | operations. This would normally only be used when | ||
74 | rcutorture was built into the kernel and started | ||
75 | automatically at boot time, in which case it is useful | ||
76 | in order to avoid confusing boot-time code with CPUs | ||
77 | coming and going. | ||
78 | |||
72 | shuffle_interval | 79 | shuffle_interval |
73 | The number of seconds to keep the test threads affinitied | 80 | The number of seconds to keep the test threads affinitied |
74 | to a particular subset of the CPUs, defaults to 3 seconds. | 81 | to a particular subset of the CPUs, defaults to 3 seconds. |
@@ -277,5 +284,7 @@ The following script may be used to torture RCU: | |||
277 | 284 | ||
278 | The output can be manually inspected for the error flag of "!!!". | 285 | The output can be manually inspected for the error flag of "!!!". |
279 | One could of course create a more elaborate script that automatically | 286 | One could of course create a more elaborate script that automatically |
280 | checked for such errors. The "rmmod" command forces a "SUCCESS" or | 287 | checked for such errors. The "rmmod" command forces a "SUCCESS", |
281 | "FAILURE" indication to be printk()ed. | 288 | "FAILURE", or "RCU_HOTPLUG" indication to be printk()ed. The first |
289 | two are self-explanatory, while the last indicates that while there | ||
290 | were no RCU failures, CPU-hotplug problems were detected. | ||