From: Paul E. McKenney Date: Tue, 24 Oct 2017 15:25:02 +0000 (-0700) Subject: workqueue: Eliminate cond_resched_rcu_qs() in favor of cond_resched() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a7e6425ea5816947d3cb51fbf57351207c074383;p=linux.git workqueue: Eliminate cond_resched_rcu_qs() in favor of cond_resched() Now that cond_resched() also provides RCU quiescent states when needed, it can be used in place of cond_resched_rcu_qs(). This commit therefore makes this change. Signed-off-by: Paul E. McKenney Cc: Tejun Heo Reviewed-by: Lai Jiangshan --- diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 8fdb710bfdd73..aee7eaab05cb9 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -2135,7 +2135,7 @@ __acquires(&pool->lock) * stop_machine. At the same time, report a quiescent RCU state so * the same condition doesn't freeze RCU. */ - cond_resched_rcu_qs(); + cond_resched(); spin_lock_irq(&pool->lock);