diff options
author | Josh Triplett <josht@us.ibm.com> | 2006-10-04 05:17:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:30 -0400 |
commit | 3c29e03d9121e07714fb9e5303d9b026800ffd5a (patch) | |
tree | f5b5b96b5446b0933c240e4c4f9c44738e5f571b /kernel/rcutorture.c | |
parent | ff2c93a5373f12f86f3281705d11278a9f2334e2 (diff) |
[PATCH] rcu: Mention rcu_bh in description of rcutorture's torture_type parameter
The comment for rcutorture's torture_type parameter only lists the RCU
variants rcu and srcu, but not rcu_bh; add rcu_bh to the list.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Acked-by: Paul E. McKenney <paulmck@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/rcutorture.c')
-rw-r--r-- | kernel/rcutorture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c index 7b965341b1dc..021d3108bb6e 100644 --- a/kernel/rcutorture.c +++ b/kernel/rcutorture.c | |||
@@ -55,7 +55,7 @@ static int stat_interval; /* Interval between stats, in seconds. */ | |||
55 | static int verbose; /* Print more debug info. */ | 55 | static int verbose; /* Print more debug info. */ |
56 | static int test_no_idle_hz; /* Test RCU's support for tickless idle CPUs. */ | 56 | static int test_no_idle_hz; /* Test RCU's support for tickless idle CPUs. */ |
57 | static int shuffle_interval = 5; /* Interval between shuffles (in sec)*/ | 57 | static int shuffle_interval = 5; /* Interval between shuffles (in sec)*/ |
58 | static char *torture_type = "rcu"; /* What to torture: rcu, srcu. */ | 58 | static char *torture_type = "rcu"; /* What to torture: rcu, rcu_bh, srcu. */ |
59 | 59 | ||
60 | module_param(nreaders, int, 0); | 60 | module_param(nreaders, int, 0); |
61 | MODULE_PARM_DESC(nreaders, "Number of RCU reader threads"); | 61 | MODULE_PARM_DESC(nreaders, "Number of RCU reader threads"); |