diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2009-10-25 22:03:54 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-10-26 04:40:31 -0400 |
commit | cf886c44ec418a01b2c52493465accb81acbf930 (patch) | |
tree | 025798ba1d14644a854431384048eb157c5d92b1 /kernel/rcutorture.c | |
parent | 64179861cb801eac4f00c79f39a29ea5ac9470d7 (diff) |
rcu: Improve rcutorture diagnostics when bad torture_type specified
Make rcutorture list the available torture_type values when it
doesn't like the one specified.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Josh Triplett <josh@joshtriplett.org>
Reviewed-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: dipankar@in.ibm.com
Cc: mathieu.desnoyers@polymtl.ca
Cc: dvhltc@us.ibm.com
Cc: niv@us.ibm.com
Cc: peterz@infradead.org
Cc: rostedt@goodmis.org
Cc: Valdis.Kletnieks@vt.edu
Cc: dhowells@redhat.com
Cc: avi@redhat.com
Cc: mtosatti@redhat.com
LKML-Reference: <12565226351868-git-send-email->
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/rcutorture.c')
-rw-r--r-- | kernel/rcutorture.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c index 14480e8b2a24..3dd0ca23e191 100644 --- a/kernel/rcutorture.c +++ b/kernel/rcutorture.c | |||
@@ -1129,8 +1129,12 @@ rcu_torture_init(void) | |||
1129 | break; | 1129 | break; |
1130 | } | 1130 | } |
1131 | if (i == ARRAY_SIZE(torture_ops)) { | 1131 | if (i == ARRAY_SIZE(torture_ops)) { |
1132 | printk(KERN_ALERT "rcutorture: invalid torture type: \"%s\"\n", | 1132 | printk(KERN_ALERT "rcu-torture: invalid torture type: \"%s\"\n", |
1133 | torture_type); | 1133 | torture_type); |
1134 | printk(KERN_ALERT "rcu-torture types:"); | ||
1135 | for (i = 0; i < ARRAY_SIZE(torture_ops); i++) | ||
1136 | printk(KERN_ALERT " %s", torture_ops[i]->name); | ||
1137 | printk(KERN_ALERT "\n"); | ||
1134 | mutex_unlock(&fullstop_mutex); | 1138 | mutex_unlock(&fullstop_mutex); |
1135 | return -EINVAL; | 1139 | return -EINVAL; |
1136 | } | 1140 | } |