1
0
Fork 0

rcuperf: Do not wake up shutdown wait queue if "shutdown" is false.

After finishing its tests rcuperf tries to wake up shutdown_wq even if
"shutdown" param is set to false, resulting in a wake_up() call on an
unitialized wait_queue_head_t which leads to "BUG: spinlock bad magic" and
"BUG: unable to handle kernel NULL pointer dereference".

Fix by checking "shutdown" param before waking up the queue.

Signed-off-by: Artem Savkov <artem.savkov@gmail.com>
hifive-unleashed-5.1
Artem Savkov 2016-02-07 13:31:39 +01:00 committed by Paul E. McKenney
parent dba6f1bab8
commit e6fb1fc108
1 changed files with 4 additions and 2 deletions

View File

@ -423,8 +423,10 @@ rcu_perf_writer(void *arg)
b_rcu_perf_writer_finished =
cur_ops->completed();
}
smp_mb(); /* Assign before wake. */
wake_up(&shutdown_wq);
if (shutdown) {
smp_mb(); /* Assign before wake. */
wake_up(&shutdown_wq);
}
}
}
if (done && !alldone &&