[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <558CA5FF.7090302@cn.fujitsu.com>
Date: Fri, 26 Jun 2015 09:08:15 +0800
From: Lai Jiangshan <laijs@...fujitsu.com>
To: Nathan Zimmer <nzimmer@....com>
CC: Andrew Morton <akpm@...ux-foundation.org>,
Nishanth Aravamudan <nacc@...ux.vnet.ibm.com>,
Tejun Heo <tj@...nel.org>, Mel Gorman <mgorman@...e.de>,
<linux-kernel@...r.kernel.org>
Subject: Re: [RFC] kthread_create_on_node is failing to honor the node choice
On 06/26/2015 05:44 AM, Nathan Zimmer wrote:
> In kthread_create_on_node we set_cpus_allowed to cpu_all_mask
> regardless of what the node is requested.
> This seems incorrect.
>
> Signed-off-by: Nathan Zimmer <nzimmer@....com>
> Cc: Andrew Morton <akpm@...ux-foundation.org>
> Cc: Nishanth Aravamudan <nacc@...ux.vnet.ibm.com>
> Cc: Tejun Heo <tj@...nel.org>
> Cc: Lai Jiangshan <laijs@...fujitsu.com>
> Cc: Mel Gorman <mgorman@...e.de>
> Cc: linux-kernel@...r.kernel.org
>
> ---
> kernel/kthread.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/kernel/kthread.c b/kernel/kthread.c
> index 10e489c..d885d66 100644
> --- a/kernel/kthread.c
> +++ b/kernel/kthread.c
> @@ -318,7 +318,10 @@ struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
> * The kernel thread should not inherit these properties.
> */
> sched_setscheduler_nocheck(task, SCHED_NORMAL, ¶m);
> - set_cpus_allowed_ptr(task, cpu_all_mask);
> + if (node == -1)
> + set_cpus_allowed_ptr(task, cpu_all_mask);
> + else
> + set_cpus_allowed_ptr(task, cpumask_of_node(node));
cpumask_of_node(node) is bad here. It containers only online cpus.
> }
> kfree(create);
> return task;
>
--
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