Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a092dfd authored by Lai Jiangshan's avatar Lai Jiangshan Committed by Tejun Heo
Browse files

workqueue: simplify current_is_workqueue_rescuer()



We can test worker->recue_wq instead of reaching into
current_pwq->wq->rescuer and then comparing it to self.

tj: Commit message.

Signed-off-by: default avatarLai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 12ee4fc6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3936,7 +3936,7 @@ bool current_is_workqueue_rescuer(void)
{
	struct worker *worker = current_wq_worker();

	return worker && worker == worker->current_pwq->wq->rescuer;
	return worker && worker->rescue_wq;
}

/**