[Quantal][Raring][PATCH] x86/apic: Remove noisy zero-mask warning from default_send_IPI_mask_logical()
Luis Henriques
luis.henriques at canonical.com
Mon Mar 18 11:58:09 UTC 2013
From: Dave Jones <davej at redhat.com>
BugLink: http://bugs.launchpad.net/bugs/1100202
Since circa 3.5, we've had dozens of reports of people hitting
this warning. Forwarded reports have been met with silence, so
just remove the warning if no-one cares.
Example reports:
https://bugzilla.redhat.com/show_bug.cgi?id=797687
https://bugzilla.redhat.com/show_bug.cgi?id=867174
https://bugzilla.redhat.com/show_bug.cgi?id=894865
Signed-off-by: Dave Jones <davej at redhat.com>
Cc: Andrew Morton <akpm at linux-foundation.org>
Link: http://lkml.kernel.org/r/20130118175847.GA27662@redhat.com
Signed-off-by: Ingo Molnar <mingo at kernel.org>
(cherry picked from commit e3f0f36ddf1b2743a0d4ea312996536a9c37e1c7)
Signed-off-by: Luis Henriques <luis.henriques at canonical.com>
---
arch/x86/kernel/apic/ipi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kernel/apic/ipi.c b/arch/x86/kernel/apic/ipi.c
index cce91bf..7434d85 100644
--- a/arch/x86/kernel/apic/ipi.c
+++ b/arch/x86/kernel/apic/ipi.c
@@ -106,7 +106,7 @@ void default_send_IPI_mask_logical(const struct cpumask *cpumask, int vector)
unsigned long mask = cpumask_bits(cpumask)[0];
unsigned long flags;
- if (WARN_ONCE(!mask, "empty IPI mask"))
+ if (!mask)
return;
local_irq_save(flags);
--
1.8.1.2
More information about the kernel-team
mailing list