Commit e6fb1fc1 authored by Artem Savkov's avatar Artem Savkov Committed by Paul E. McKenney

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: default avatarArtem Savkov <artem.savkov@gmail.com>
parent dba6f1ba
...@@ -423,8 +423,10 @@ rcu_perf_writer(void *arg) ...@@ -423,8 +423,10 @@ rcu_perf_writer(void *arg)
b_rcu_perf_writer_finished = b_rcu_perf_writer_finished =
cur_ops->completed(); cur_ops->completed();
} }
smp_mb(); /* Assign before wake. */ if (shutdown) {
wake_up(&shutdown_wq); smp_mb(); /* Assign before wake. */
wake_up(&shutdown_wq);
}
} }
} }
if (done && !alldone && if (done && !alldone &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment