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

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

workqueue/hotplug: simplify workqueue_offline_cpu()

Since the recent cpu/hotplug refactoring, workqueue_offline_cpu() is
guaranteed to run on the local cpu which is going offline.

This also fixes the following deadlock by removing work item
scheduling and flushing from CPU hotplug path.

 http://lkml.kernel.org/r/1504764252-29091-1-git-send-email-prsood@codeaurora.org



tj: Description update.

Signed-off-by: default avatarLai Jiangshan <jiangshanlai@gmail.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent c98a9805
Loading
Loading
Loading
Loading
+6 −9
Original line number Original line Diff line number Diff line
@@ -1635,7 +1635,7 @@ static void worker_enter_idle(struct worker *worker)
		mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
		mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);


	/*
	/*
	 * Sanity check nr_running.  Because wq_unbind_fn() releases
	 * Sanity check nr_running.  Because unbind_workers() releases
	 * pool->lock between setting %WORKER_UNBOUND and zapping
	 * pool->lock between setting %WORKER_UNBOUND and zapping
	 * nr_running, the warning may trigger spuriously.  Check iff
	 * nr_running, the warning may trigger spuriously.  Check iff
	 * unbind is not in progress.
	 * unbind is not in progress.
@@ -4511,9 +4511,8 @@ void show_workqueue_state(void)
 * cpu comes back online.
 * cpu comes back online.
 */
 */


static void wq_unbind_fn(struct work_struct *work)
static void unbind_workers(int cpu)
{
{
	int cpu = smp_processor_id();
	struct worker_pool *pool;
	struct worker_pool *pool;
	struct worker *worker;
	struct worker *worker;


@@ -4710,12 +4709,13 @@ int workqueue_online_cpu(unsigned int cpu)


int workqueue_offline_cpu(unsigned int cpu)
int workqueue_offline_cpu(unsigned int cpu)
{
{
	struct work_struct unbind_work;
	struct workqueue_struct *wq;
	struct workqueue_struct *wq;


	/* unbinding per-cpu workers should happen on the local CPU */
	/* unbinding per-cpu workers should happen on the local CPU */
	INIT_WORK_ONSTACK(&unbind_work, wq_unbind_fn);
	if (WARN_ON(cpu != smp_processor_id()))
	queue_work_on(cpu, system_highpri_wq, &unbind_work);
		return -1;

	unbind_workers(cpu);


	/* update NUMA affinity of unbound workqueues */
	/* update NUMA affinity of unbound workqueues */
	mutex_lock(&wq_pool_mutex);
	mutex_lock(&wq_pool_mutex);
@@ -4723,9 +4723,6 @@ int workqueue_offline_cpu(unsigned int cpu)
		wq_update_unbound_numa(wq, cpu, false);
		wq_update_unbound_numa(wq, cpu, false);
	mutex_unlock(&wq_pool_mutex);
	mutex_unlock(&wq_pool_mutex);


	/* wait for per-cpu unbinding to finish */
	flush_work(&unbind_work);
	destroy_work_on_stack(&unbind_work);
	return 0;
	return 0;
}
}