mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
rcutorture: Remove redundant RTWS_DEF_FREE check
This check does nothing because the state at this point in the code because the rcu_torture_writer_state value is guaranteed to instead be RTWS_REPLACE. This commit therefore removes this check. Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
parent
d594231aa5
commit
37d6ade31c
1 changed files with 1 additions and 2 deletions
|
@ -1314,8 +1314,7 @@ rcu_torture_writer(void *arg)
|
||||||
if (cur_ops->get_gp_state && cur_ops->poll_gp_state) {
|
if (cur_ops->get_gp_state && cur_ops->poll_gp_state) {
|
||||||
idx = cur_ops->readlock();
|
idx = cur_ops->readlock();
|
||||||
cookie = cur_ops->get_gp_state();
|
cookie = cur_ops->get_gp_state();
|
||||||
WARN_ONCE(rcu_torture_writer_state != RTWS_DEF_FREE &&
|
WARN_ONCE(cur_ops->poll_gp_state(cookie),
|
||||||
cur_ops->poll_gp_state(cookie),
|
|
||||||
"%s: Cookie check 1 failed %s(%d) %lu->%lu\n",
|
"%s: Cookie check 1 failed %s(%d) %lu->%lu\n",
|
||||||
__func__,
|
__func__,
|
||||||
rcu_torture_writer_state_getname(),
|
rcu_torture_writer_state_getname(),
|
||||||
|
|
Loading…
Reference in a new issue