All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] workqueue: Ensure that cpumask set for pools created after boot
@ 2017-05-25 14:55 Michael Bringmann
  2017-05-25 14:59 ` Tejun Heo
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Bringmann @ 2017-05-25 14:55 UTC (permalink / raw)
  To: Tejun Heo, Lai Jiangshan, linux-kernel; +Cc: Nathan Fontenot


On NUMA systems with dynamic processors, the content of the cpumask
may change over time.  As new processors are added via DLPAR operations,
workqueues are created for them.  This patch ensures that the pools
created for new workqueues will be initialized with a cpumask before
the first worker is created, attached, and woken up.  If the mask is
not set up, then the kernel will crash when 'wakeup_process' is unable
to find a valid CPU to which to assign the new worker.

Signed-off-by: Michael Bringmann <mwb@linux.vnet.ibm.com>
---
Changes in V2:
  -- Only fill in empty cpumasks.
---
 kernel/workqueue.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index c74bf39..1b16ac4 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -3366,6 +3366,9 @@ static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
 	copy_workqueue_attrs(pool->attrs, attrs);
 	pool->node = target_node;
 
+	if (!cpumask_weight(pool->attrs->cpumask))
+		cpumask_copy(pool->attrs->cpumask, cpumask_of(smp_processor_id()));
+
 	/*
 	 * no_numa isn't a worker_pool attribute, always clear it.  See
 	 * 'struct workqueue_attrs' comments for detail.

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH V2] workqueue: Ensure that cpumask set for pools created after boot
  2017-05-25 14:55 [PATCH V2] workqueue: Ensure that cpumask set for pools created after boot Michael Bringmann
@ 2017-05-25 14:59 ` Tejun Heo
  0 siblings, 0 replies; 2+ messages in thread
From: Tejun Heo @ 2017-05-25 14:59 UTC (permalink / raw)
  To: Michael Bringmann; +Cc: Lai Jiangshan, linux-kernel, Nathan Fontenot

Hello, Michael.

On Thu, May 25, 2017 at 09:55:10AM -0500, Michael Bringmann wrote:
> On NUMA systems with dynamic processors, the content of the cpumask
> may change over time.  As new processors are added via DLPAR operations,
> workqueues are created for them.  This patch ensures that the pools
> created for new workqueues will be initialized with a cpumask before
> the first worker is created, attached, and woken up.  If the mask is
> not set up, then the kernel will crash when 'wakeup_process' is unable
> to find a valid CPU to which to assign the new worker.
> 
> Signed-off-by: Michael Bringmann <mwb@linux.vnet.ibm.com>
> ---
> Changes in V2:
>   -- Only fill in empty cpumasks.
> ---
>  kernel/workqueue.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
> index c74bf39..1b16ac4 100644
> --- a/kernel/workqueue.c
> +++ b/kernel/workqueue.c
> @@ -3366,6 +3366,9 @@ static struct worker_pool *get_unbound_pool(const struct workqueue_attrs *attrs)
>  	copy_workqueue_attrs(pool->attrs, attrs);
>  	pool->node = target_node;
>  
> +	if (!cpumask_weight(pool->attrs->cpumask))
> +		cpumask_copy(pool->attrs->cpumask, cpumask_of(smp_processor_id()));
> +

So, the problem is that control is reaching here with empty mask.
Filling it with an arbitrary cpu id doesn't really fix the bug.  I
think I just messed up wq_calc_node_cpumask().  Will send a fix soon.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-05-25 14:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-25 14:55 [PATCH V2] workqueue: Ensure that cpumask set for pools created after boot Michael Bringmann
2017-05-25 14:59 ` Tejun Heo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.