netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] sfc: fix calling of free_irq with 0 argument
@ 2014-05-06 12:49 Nikolay Aleksandrov
  2014-05-06 15:34 ` Nikolay Aleksandrov
  2014-05-07 19:39 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Nikolay Aleksandrov @ 2014-05-06 12:49 UTC (permalink / raw)
  To: netdev
  Cc: Nikolay Aleksandrov, linux-net-drivers, Shradha Shah,
	David S. Miller

If the sfc driver is in legacy interrupt mode (either explicitly by
using interrupt_mode module param or by falling back to it) it will
hit a warning at kernel/irq/manage.c because it will try to free irq 0
in efx_nic_fini_interrupt() since the MSI interrupts were freed always,
but in legacy irq mode they're == 0. So fix it by checking if we
actually have an interrupt allocated and only then free it.

CC: <linux-net-drivers@solarflare.com>
CC: Shradha Shah <sshah@solarflare.com>
CC: David S. Miller <davem@davemloft.net>

Reported-by: Zenghui Shi <zshi@redhat.com>
Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
---
There're other ways to fix this as well, but I chose this one as it follows
the logic in the code. Also I saw it used in a few places to check if
there's an IRQ allocated for that channel.

 drivers/net/ethernet/sfc/nic.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/sfc/nic.c b/drivers/net/ethernet/sfc/nic.c
index 32d969e857f7..cab627defbc3 100644
--- a/drivers/net/ethernet/sfc/nic.c
+++ b/drivers/net/ethernet/sfc/nic.c
@@ -158,7 +158,9 @@ void efx_nic_fini_interrupt(struct efx_nic *efx)
 
 	/* Disable MSI/MSI-X interrupts */
 	efx_for_each_channel(channel, efx)
-		free_irq(channel->irq, &efx->msi_context[channel->channel]);
+		if (channel->irq)
+			free_irq(channel->irq,
+				 &efx->msi_context[channel->channel]);
 
 	/* Disable legacy interrupt */
 	if (efx->legacy_irq)
-- 
1.8.5.3

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

end of thread, other threads:[~2014-05-07 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-06 12:49 [PATCH net] sfc: fix calling of free_irq with 0 argument Nikolay Aleksandrov
2014-05-06 15:34 ` Nikolay Aleksandrov
2014-05-07 19:39 ` David Miller
2014-05-07 19:45   ` Nikolay Aleksandrov

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