]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
To make netconsole usable on UML, its ethernet driver needs netpoll
authorRichard Weinberger <richard@nod.at>
Sat, 16 Jul 2011 13:31:09 +0000 (23:31 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 26 Jul 2011 05:05:19 +0000 (15:05 +1000)
support.

Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/um/drivers/net_kern.c

index 47d0c37897d5874d0bfb95d3d2b87441bd2df6a0..22745b47c82956c086d1dfff5fdd82be18dec3cc 100644 (file)
@@ -262,6 +262,15 @@ static int uml_net_change_mtu(struct net_device *dev, int new_mtu)
        return 0;
 }
 
+#ifdef CONFIG_NET_POLL_CONTROLLER
+static void uml_net_poll_controller(struct net_device *dev)
+{
+       disable_irq(dev->irq);
+       uml_net_interrupt(dev->irq, dev);
+       enable_irq(dev->irq);
+}
+#endif
+
 static void uml_net_get_drvinfo(struct net_device *dev,
                                struct ethtool_drvinfo *info)
 {
@@ -364,6 +373,9 @@ static const struct net_device_ops uml_netdev_ops = {
        .ndo_set_mac_address    = eth_mac_addr,
        .ndo_change_mtu         = uml_net_change_mtu,
        .ndo_validate_addr      = eth_validate_addr,
+#ifdef CONFIG_NET_POLL_CONTROLLER
+       .ndo_poll_controller = uml_net_poll_controller,
+#endif
 };
 
 /*