linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Remove noisy warning from default_send_IPI_mask_logical
@ 2013-01-18 17:58 Dave Jones
  2013-01-24 20:07 ` [tip:x86/apic] x86/apic: Remove noisy zero-mask warning from default_send_IPI_mask_logical() tip-bot for Dave Jones
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Jones @ 2013-01-18 17:58 UTC (permalink / raw)
  To: x86; +Cc: Linux Kernel

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@redhat.com>

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);

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

end of thread, other threads:[~2013-01-24 20:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-18 17:58 Remove noisy warning from default_send_IPI_mask_logical Dave Jones
2013-01-24 20:07 ` [tip:x86/apic] x86/apic: Remove noisy zero-mask warning from default_send_IPI_mask_logical() tip-bot for Dave Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).