aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcu/rcuperf.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/rcu/rcuperf.c')
-rw-r--r--kernel/rcu/rcuperf.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/kernel/rcu/rcuperf.c b/kernel/rcu/rcuperf.c
index b080bc4a4f45..00e395c0d7d0 100644
--- a/kernel/rcu/rcuperf.c
+++ b/kernel/rcu/rcuperf.c
@@ -680,12 +680,11 @@ rcu_perf_init(void)
680 break; 680 break;
681 } 681 }
682 if (i == ARRAY_SIZE(perf_ops)) { 682 if (i == ARRAY_SIZE(perf_ops)) {
683 pr_alert("rcu-perf: invalid perf type: \"%s\"\n", 683 pr_alert("rcu-perf: invalid perf type: \"%s\"\n", perf_type);
684 perf_type);
685 pr_alert("rcu-perf types:"); 684 pr_alert("rcu-perf types:");
686 for (i = 0; i < ARRAY_SIZE(perf_ops); i++) 685 for (i = 0; i < ARRAY_SIZE(perf_ops); i++)
687 pr_alert(" %s", perf_ops[i]->name); 686 pr_cont(" %s", perf_ops[i]->name);
688 pr_alert("\n"); 687 pr_cont("\n");
689 firsterr = -EINVAL; 688 firsterr = -EINVAL;
690 goto unwind; 689 goto unwind;
691 } 690 }