[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <548E421C.50305@jp.fujitsu.com>
Date: Mon, 15 Dec 2014 11:06:20 +0900
From: Kamezawa Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
To: Lai Jiangshan <laijs@...fujitsu.com>
CC: <linux-kernel@...r.kernel.org>, Tejun Heo <tj@...nel.org>,
Yasuaki Ishimatsu <isimatu.yasuaki@...fujitsu.com>,
"Gu, Zheng" <guz.fnst@...fujitsu.com>,
tangchen <tangchen@...fujitsu.com>
Subject: Re: [PATCH 3/4] workqueue: remove per-node unbound pool when node
goes offline.
(2014/12/15 11:06), Lai Jiangshan wrote:
> On 12/14/2014 12:35 AM, Kamezawa Hiroyuki wrote:
>> remove node aware unbound pools if node goes offline.
>>
>> scan unbound workqueue and remove numa affine pool when
>> a node goes offline.
>>
>> Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
>> ---
>> kernel/workqueue.c | 29 +++++++++++++++++++++++++++++
>> 1 file changed, 29 insertions(+)
>>
>> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
>> index 35f4f00..07b4eb5 100644
>> --- a/kernel/workqueue.c
>> +++ b/kernel/workqueue.c
>> @@ -4921,11 +4921,40 @@ early_initcall(init_workqueues);
>> * cached pools per cpu should be freed at node unplug
>> */
>>
>> +/*
>> + * Replace per-node pwq with dfl_pwq because this node disappers.
>> + * The new pool will be set at CPU_ONLINE by wq_update_unbound_numa.
>> + */
>> +static void wq_release_unbound_numa(struct workqueue_struct *wq, int nid)
>> +{
>> + struct pool_workqueue *old_pwq = NULL;
>> +
>> + if (!wq_numa_enabled || !(wq->flags & WQ_UNBOUND))
>> + return;
>> + mutex_lock(&wq->mutex);
>> + if (wq->unbound_attrs->no_numa)
>> + goto out_unlock;
>> + spin_lock_irq(&wq->dfl_pwq->pool->lock);
>> + get_pwq(wq->dfl_pwq);
>> + spin_unlock_irq(&wq->dfl_pwq->pool->lock);
>> + old_pwq = numa_pwq_tbl_install(wq, nid, wq->dfl_pwq);
>> +out_unlock:
>> + mutex_unlock(&wq->mutex);
>> + put_pwq_unlocked(old_pwq);
>> + return;
>> +}
>
>
> We have already did it in wq_update_unbound_numa().
>
Ah, hm. CPU_OFFLINE event does this, ok.
Thanks,
-Kame
>> +
>> void workqueue_register_numanode(int nid)
>> {
>> }
>>
>> void workqueue_unregister_numanode(int nid)
>> {
>> + struct workqueue_struct *wq;
>> +
>> + mutex_lock(&wq_pool_mutex);
>> + list_for_each_entry(wq, &workqueues, list)
>> + wq_release_unbound_numa(wq, nid);
>> + mutex_unlock(&wq_pool_mutex);
>> }
>> #endif
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists