[PATCH] forcedeth: netpoll support
This commit is contained in:
committed by
Jeff Garzik
parent
88d7bd8cb9
commit
2918c35d31
@@ -1480,6 +1480,13 @@ static void nv_do_nic_poll(unsigned long data)
|
|||||||
enable_irq(dev->irq);
|
enable_irq(dev->irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_NET_POLL_CONTROLLER
|
||||||
|
static void nv_poll_controller(struct net_device *dev)
|
||||||
|
{
|
||||||
|
nv_do_nic_poll((unsigned long) dev);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void nv_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
|
static void nv_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
|
||||||
{
|
{
|
||||||
struct fe_priv *np = get_nvpriv(dev);
|
struct fe_priv *np = get_nvpriv(dev);
|
||||||
@@ -1962,6 +1969,9 @@ static int __devinit nv_probe(struct pci_dev *pci_dev, const struct pci_device_i
|
|||||||
dev->get_stats = nv_get_stats;
|
dev->get_stats = nv_get_stats;
|
||||||
dev->change_mtu = nv_change_mtu;
|
dev->change_mtu = nv_change_mtu;
|
||||||
dev->set_multicast_list = nv_set_multicast;
|
dev->set_multicast_list = nv_set_multicast;
|
||||||
|
#ifdef CONFIG_NET_POLL_CONTROLLER
|
||||||
|
dev->poll_controller = nv_poll_controller;
|
||||||
|
#endif
|
||||||
SET_ETHTOOL_OPS(dev, &ops);
|
SET_ETHTOOL_OPS(dev, &ops);
|
||||||
dev->tx_timeout = nv_tx_timeout;
|
dev->tx_timeout = nv_tx_timeout;
|
||||||
dev->watchdog_timeo = NV_WATCHDOG_TIMEO;
|
dev->watchdog_timeo = NV_WATCHDOG_TIMEO;
|
||||||
|
Reference in New Issue
Block a user