[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1240225027-14721-1-git-send-email-haavard.skinnemoen@atmel.com>
Date: Mon, 20 Apr 2009 12:57:07 +0200
From: Haavard Skinnemoen <haavard.skinnemoen@...el.com>
To: David Miller <davem@...emloft.net>
Cc: thomas.petazzoni@...e-electrons.com, michael@...e-electrons.com,
netdev@...r.kernel.org,
Haavard Skinnemoen <haavard.skinnemoen@...el.com>
Subject: [PATCH] macb: Add support of the netpoll API
From: Thomas Petazzoni <thomas.petazzoni@...e-electrons.com>
With this patch in place, I'm successfully able to use the netconsole
mechanism with the Calao USB-A9263 board, which uses the AT91SAM9263
CPU, which in terms of Ethernet controller is supported by the macb
driver.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@...e-electrons.com>
[haavard.skinnemoen@...el.com: disable_irq() -> local_irq_save()]
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@...el.com>
---
drivers/net/macb.c | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/drivers/net/macb.c b/drivers/net/macb.c
index f505010..dd7a1c3 100644
--- a/drivers/net/macb.c
+++ b/drivers/net/macb.c
@@ -615,6 +615,21 @@ static irqreturn_t macb_interrupt(int irq, void *dev_id)
return IRQ_HANDLED;
}
+#ifdef CONFIG_NET_POLL_CONTROLLER
+/*
+ * Polling receive - used by netconsole and other diagnostic tools
+ * to allow network i/o with interrupts disabled.
+ */
+static void macb_poll_controller(struct net_device *dev)
+{
+ unsigned long flags;
+
+ local_irq_save(flags);
+ macb_interrupt(dev->irq, dev);
+ local_irq_restore(flags);
+}
+#endif
+
static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
struct macb *bp = netdev_priv(dev);
@@ -1183,6 +1198,9 @@ static int __init macb_probe(struct platform_device *pdev)
dev->do_ioctl = macb_ioctl;
netif_napi_add(dev, &bp->napi, macb_poll, 64);
dev->ethtool_ops = &macb_ethtool_ops;
+#ifdef CONFIG_NET_POLL_CONTROLLER
+ dev->poll_controller = macb_poll_controller;
+#endif
dev->base_addr = regs->start;
--
1.6.0.4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists