aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcutorture.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/rcutorture.c')
-rw-r--r--kernel/rcutorture.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c
index a58ac285fc69..a52b3217c160 100644
--- a/kernel/rcutorture.c
+++ b/kernel/rcutorture.c
@@ -1602,6 +1602,10 @@ rcu_torture_cleanup(void)
1602 cur_ops->cleanup(); 1602 cur_ops->cleanup();
1603 if (atomic_read(&n_rcu_torture_error)) 1603 if (atomic_read(&n_rcu_torture_error))
1604 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE"); 1604 rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
1605 else if (n_online_successes != n_online_attempts ||
1606 n_offline_successes != n_offline_attempts)
1607 rcu_torture_print_module_parms(cur_ops,
1608 "End of test: RCU_HOTPLUG");
1605 else 1609 else
1606 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS"); 1610 rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
1607} 1611}