* [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable()
@ 2014-01-17 13:39 Prarit Bhargava
2014-01-20 8:50 ` Chen, Gong
0 siblings, 1 reply; 4+ messages in thread
From: Prarit Bhargava @ 2014-01-17 13:39 UTC (permalink / raw)
To: linux-kernel
Cc: Prarit Bhargava, Andi Kleen, Michel Lespinasse, Seiji Aguchi,
Yang Zhang, Paul Gortmaker, Janet Morgan, Tony Luck, Ruiv Wang,
Gong Chen, H. Peter Anvin, x86, Fengguang Wu
kbuild, 0day kernel build service, outputs the warning:
arch/x86/kernel/irq.c:333:1: warning: the frame size of 2056 bytes
is larger than 2048 bytes [-Wframe-larger-than=]
because check_irq_vectors_for_cpu_disable() allocates two cpumasks on the
stack. Fix this by using cpumask_var_t, the cpumask stack safe variant.
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michel Lespinasse <walken@google.com>
Cc: Seiji Aguchi <seiji.aguchi@hds.com>
Cc: Yang Zhang <yang.z.zhang@Intel.com>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Janet Morgan <janet.morgan@intel.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Ruiv Wang <ruiv.wang@gmail.com>
Cc: Gong Chen <gong.chen@linux.intel.com>
Cc: H. Peter Anvin <hpa@linux.intel.com>
Cc: Gong Chen <gong.chen@linux.intel.com>
Cc: x86@kernel.org
Cc: Fengguang Wu <fengguang.wu@intel.com>
---
arch/x86/kernel/irq.c | 35 +++++++++++++++++++++++++----------
1 file changed, 25 insertions(+), 10 deletions(-)
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c
index 4207e8d..b760c8d 100644
--- a/arch/x86/kernel/irq.c
+++ b/arch/x86/kernel/irq.c
@@ -269,15 +269,25 @@ EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
*/
int check_irq_vectors_for_cpu_disable(void)
{
- int irq, cpu;
+ int irq, cpu, ret = 0;
unsigned int this_cpu, vector, this_count, count;
struct irq_desc *desc;
struct irq_data *data;
- struct cpumask affinity_new, online_new;
+ cpumask_var_t affinity_new, online_new;
+
+ if (!alloc_cpumask_var(&online_new, GFP_KERNEL)){
+ ret = -ENOMEM;
+ goto out;
+ }
+
+ if (!alloc_cpumask_var(&affinity_new, GFP_KERNEL)) {
+ ret = -ENOMEM;
+ goto free_online_new;
+ }
this_cpu = smp_processor_id();
- cpumask_copy(&online_new, cpu_online_mask);
- cpu_clear(this_cpu, online_new);
+ cpumask_copy(online_new, cpu_online_mask);
+ __cpu_clear(this_cpu, online_new);
this_count = 0;
for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
@@ -285,8 +295,8 @@ int check_irq_vectors_for_cpu_disable(void)
if (irq >= 0) {
desc = irq_to_desc(irq);
data = irq_desc_get_irq_data(desc);
- cpumask_copy(&affinity_new, data->affinity);
- cpu_clear(this_cpu, affinity_new);
+ cpumask_copy(affinity_new, data->affinity);
+ __cpu_clear(this_cpu, affinity_new);
/* Do not count inactive or per-cpu irqs. */
if (!irq_has_action(irq) || irqd_is_per_cpu(data))
@@ -307,8 +317,8 @@ int check_irq_vectors_for_cpu_disable(void)
* mask is not zero; that is the down'd cpu is the
* last online cpu in a user set affinity mask.
*/
- if (cpumask_empty(&affinity_new) ||
- !cpumask_subset(&affinity_new, &online_new))
+ if (cpumask_empty(affinity_new) ||
+ !cpumask_subset(affinity_new, online_new))
this_count++;
}
}
@@ -327,9 +337,14 @@ int check_irq_vectors_for_cpu_disable(void)
if (count < this_count) {
pr_warn("CPU %d disable failed: CPU has %u vectors assigned and there are only %u available.\n",
this_cpu, this_count, count);
- return -ERANGE;
+ ret = -ERANGE;
}
- return 0;
+
+ free_cpumask_var(affinity_new);
+free_online_new:
+ free_cpumask_var(online_new);
+out:
+ return ret;
}
/* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
--
1.7.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable()
2014-01-17 13:39 [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() Prarit Bhargava
@ 2014-01-20 8:50 ` Chen, Gong
2014-01-20 18:57 ` [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() [v2] Prarit Bhargava
0 siblings, 1 reply; 4+ messages in thread
From: Chen, Gong @ 2014-01-20 8:50 UTC (permalink / raw)
To: Prarit Bhargava
Cc: linux-kernel, Andi Kleen, Michel Lespinasse, Seiji Aguchi,
Yang Zhang, Paul Gortmaker, Janet Morgan, Tony Luck, Ruiv Wang,
H. Peter Anvin, x86, Fengguang Wu
[-- Attachment #1: Type: text/plain, Size: 425 bytes --]
On Fri, Jan 17, 2014 at 08:39:21AM -0500, Prarit Bhargava wrote:
[...]
> +
> + if (!alloc_cpumask_var(&online_new, GFP_KERNEL)){
> + ret = -ENOMEM;
> + goto out;
> + }
> +
> + if (!alloc_cpumask_var(&affinity_new, GFP_KERNEL)) {
> + ret = -ENOMEM;
> + goto free_online_new;
> + }
>
This function is protected by stop_machine, which means the interrupts have
been disabled, so GFP_KERNEL is not reliable.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() [v2]
2014-01-20 8:50 ` Chen, Gong
@ 2014-01-20 18:57 ` Prarit Bhargava
2014-01-22 2:00 ` Chen, Gong
0 siblings, 1 reply; 4+ messages in thread
From: Prarit Bhargava @ 2014-01-20 18:57 UTC (permalink / raw)
To: linux-kernel
Cc: Prarit Bhargava, Andi Kleen, Michel Lespinasse, Seiji Aguchi,
Yang Zhang, Paul Gortmaker, Janet Morgan, Tony Luck, Ruiv Wang,
Gong Chen, H. Peter Anvin, x86, Fengguang Wu
kbuild, 0day kernel build service, outputs the warning:
arch/x86/kernel/irq.c:333:1: warning: the frame size of 2056 bytes
is larger than 2048 bytes [-Wframe-larger-than=]
because check_irq_vectors_for_cpu_disable() allocates two cpumasks on the
stack. Fix this by using cpumask_var_t, the cpumask stack safe variant.
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michel Lespinasse <walken@google.com>
Cc: Seiji Aguchi <seiji.aguchi@hds.com>
Cc: Yang Zhang <yang.z.zhang@Intel.com>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Janet Morgan <janet.morgan@intel.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Ruiv Wang <ruiv.wang@gmail.com>
Cc: Gong Chen <gong.chen@linux.intel.com>
Cc: H. Peter Anvin <hpa@linux.intel.com>
Cc: Gong Chen <gong.chen@linux.intel.com>
Cc: x86@kernel.org
Cc: Fengguang Wu <fengguang.wu@intel.com>
[v2]: switch from GFP_KERNEL to GFP_ATOMIC
---
arch/x86/kernel/irq.c | 35 +++++++++++++++++++++++++----------
1 file changed, 25 insertions(+), 10 deletions(-)
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c
index 4207e8d..c130cfa 100644
--- a/arch/x86/kernel/irq.c
+++ b/arch/x86/kernel/irq.c
@@ -269,15 +269,25 @@ EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
*/
int check_irq_vectors_for_cpu_disable(void)
{
- int irq, cpu;
+ int irq, cpu, ret = 0;
unsigned int this_cpu, vector, this_count, count;
struct irq_desc *desc;
struct irq_data *data;
- struct cpumask affinity_new, online_new;
+ cpumask_var_t affinity_new, online_new;
+
+ if (!alloc_cpumask_var(&online_new, GFP_ATOMIC)){
+ ret = -ENOMEM;
+ goto out;
+ }
+
+ if (!alloc_cpumask_var(&affinity_new, GFP_ATOMIC)) {
+ ret = -ENOMEM;
+ goto free_online_new;
+ }
this_cpu = smp_processor_id();
- cpumask_copy(&online_new, cpu_online_mask);
- cpu_clear(this_cpu, online_new);
+ cpumask_copy(online_new, cpu_online_mask);
+ __cpu_clear(this_cpu, online_new);
this_count = 0;
for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
@@ -285,8 +295,8 @@ int check_irq_vectors_for_cpu_disable(void)
if (irq >= 0) {
desc = irq_to_desc(irq);
data = irq_desc_get_irq_data(desc);
- cpumask_copy(&affinity_new, data->affinity);
- cpu_clear(this_cpu, affinity_new);
+ cpumask_copy(affinity_new, data->affinity);
+ __cpu_clear(this_cpu, affinity_new);
/* Do not count inactive or per-cpu irqs. */
if (!irq_has_action(irq) || irqd_is_per_cpu(data))
@@ -307,8 +317,8 @@ int check_irq_vectors_for_cpu_disable(void)
* mask is not zero; that is the down'd cpu is the
* last online cpu in a user set affinity mask.
*/
- if (cpumask_empty(&affinity_new) ||
- !cpumask_subset(&affinity_new, &online_new))
+ if (cpumask_empty(affinity_new) ||
+ !cpumask_subset(affinity_new, online_new))
this_count++;
}
}
@@ -327,9 +337,14 @@ int check_irq_vectors_for_cpu_disable(void)
if (count < this_count) {
pr_warn("CPU %d disable failed: CPU has %u vectors assigned and there are only %u available.\n",
this_cpu, this_count, count);
- return -ERANGE;
+ ret = -ERANGE;
}
- return 0;
+
+ free_cpumask_var(affinity_new);
+free_online_new:
+ free_cpumask_var(online_new);
+out:
+ return ret;
}
/* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
--
1.7.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() [v2]
2014-01-20 18:57 ` [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() [v2] Prarit Bhargava
@ 2014-01-22 2:00 ` Chen, Gong
0 siblings, 0 replies; 4+ messages in thread
From: Chen, Gong @ 2014-01-22 2:00 UTC (permalink / raw)
To: Prarit Bhargava
Cc: linux-kernel, Andi Kleen, Michel Lespinasse, Seiji Aguchi,
Yang Zhang, Paul Gortmaker, Janet Morgan, Tony Luck, Ruiv Wang,
H. Peter Anvin, x86, Fengguang Wu
[-- Attachment #1: Type: text/plain, Size: 1255 bytes --]
On Mon, Jan 20, 2014 at 01:57:58PM -0500, Prarit Bhargava wrote:
> Subject: [PATCH] x86, cpu hotplug, use cpumask stack safe variant
> cpumask_var_t in check_irq_vectors_for_cpu_disable() [v2]
>
> kbuild, 0day kernel build service, outputs the warning:
>
> arch/x86/kernel/irq.c:333:1: warning: the frame size of 2056 bytes
> is larger than 2048 bytes [-Wframe-larger-than=]
>
> because check_irq_vectors_for_cpu_disable() allocates two cpumasks on the
> stack. Fix this by using cpumask_var_t, the cpumask stack safe variant.
>
> Signed-off-by: Prarit Bhargava <prarit@redhat.com>
> Cc: Andi Kleen <ak@linux.intel.com>
> Cc: Michel Lespinasse <walken@google.com>
> Cc: Seiji Aguchi <seiji.aguchi@hds.com>
> Cc: Yang Zhang <yang.z.zhang@Intel.com>
> Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
> Cc: Janet Morgan <janet.morgan@intel.com>
> Cc: Tony Luck <tony.luck@intel.com>
> Cc: Ruiv Wang <ruiv.wang@gmail.com>
> Cc: Gong Chen <gong.chen@linux.intel.com>
> Cc: H. Peter Anvin <hpa@linux.intel.com>
> Cc: Gong Chen <gong.chen@linux.intel.com>
> Cc: x86@kernel.org
> Cc: Fengguang Wu <fengguang.wu@intel.com>
>
> [v2]: switch from GFP_KERNEL to GFP_ATOMIC
Reviewed-by: Chen, Gong <gong.chen@linux.intel.com>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-01-22 2:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-17 13:39 [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() Prarit Bhargava
2014-01-20 8:50 ` Chen, Gong
2014-01-20 18:57 ` [PATCH] x86, cpu hotplug, use cpumask stack safe variant cpumask_var_t in check_irq_vectors_for_cpu_disable() [v2] Prarit Bhargava
2014-01-22 2:00 ` Chen, Gong
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.