mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 11:57:03 +07:00
rcu: Make rcutorture emit online failures if verbose
Although rcutorture counts CPU-hotplug online failures, it does not explicitly record which CPUs were having trouble coming online. This commit therefore emits a console message when online failure occurs. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org>
This commit is contained in:
parent
ef47db8e99
commit
7a6a41073c
@ -1434,7 +1434,13 @@ rcu_torture_onoff(void *arg)
|
|||||||
torture_type, cpu);
|
torture_type, cpu);
|
||||||
starttime = jiffies;
|
starttime = jiffies;
|
||||||
n_online_attempts++;
|
n_online_attempts++;
|
||||||
if (cpu_up(cpu) == 0) {
|
ret = cpu_up(cpu);
|
||||||
|
if (ret) {
|
||||||
|
if (verbose)
|
||||||
|
pr_alert("%s" TORTURE_FLAG
|
||||||
|
"rcu_torture_onoff task: online %d failed: errno %d\n",
|
||||||
|
torture_type, cpu, ret);
|
||||||
|
} else {
|
||||||
if (verbose)
|
if (verbose)
|
||||||
pr_alert("%s" TORTURE_FLAG
|
pr_alert("%s" TORTURE_FLAG
|
||||||
"rcu_torture_onoff task: onlined %d\n",
|
"rcu_torture_onoff task: onlined %d\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user