aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sfc/falcon.c
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2008-12-13 00:37:02 -0500
committerDavid S. Miller <davem@davemloft.net>2008-12-13 00:57:45 -0500
commit56536e9ce7c23bbc8519b8f99837493dea8da57d (patch)
tree45e13f39d0a6b7f7254a474da016fc319cc5f04e /drivers/net/sfc/falcon.c
parent28b581ab0a0aa7bc8b22935779ca3e8d6f651ac7 (diff)
sfc: Provide hints to irqbalance daemon
Allocate IRQs with the name format <device>[-<type>]-<number> so that future versions of irqbalanced understand what we're doing. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/falcon.c')
-rw-r--r--drivers/net/sfc/falcon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c
index 2ef876d8f233..e32be4c83d90 100644
--- a/drivers/net/sfc/falcon.c
+++ b/drivers/net/sfc/falcon.c
@@ -1574,7 +1574,7 @@ int falcon_init_interrupt(struct efx_nic *efx)
1574 efx_for_each_channel(channel, efx) { 1574 efx_for_each_channel(channel, efx) {
1575 rc = request_irq(channel->irq, falcon_msi_interrupt, 1575 rc = request_irq(channel->irq, falcon_msi_interrupt,
1576 IRQF_PROBE_SHARED, /* Not shared */ 1576 IRQF_PROBE_SHARED, /* Not shared */
1577 efx->name, channel); 1577 channel->name, channel);
1578 if (rc) { 1578 if (rc) {
1579 EFX_ERR(efx, "failed to hook IRQ %d\n", channel->irq); 1579 EFX_ERR(efx, "failed to hook IRQ %d\n", channel->irq);
1580 goto fail2; 1580 goto fail2;