search for: eip_interrupt

Displaying 4 results from an estimated 4 matches for "eip_interrupt".

Did you mean: ei_interrupt
2019 Nov 27
0
[net-next V3 1/2] netdev: pass the stuck queue to the timeout handler
...ct net_device *dev); > > struct net_device_stats *ei_get_stats(struct net_device *dev); > > @@ -50,7 +50,7 @@ void NS8390p_init(struct net_device *dev, int startp); > > int eip_open(struct net_device *dev); > > int eip_close(struct net_device *dev); > > irqreturn_t eip_interrupt(int irq, void *dev_id); > > -void eip_tx_timeout(struct net_device *dev); > > +void eip_tx_timeout(struct net_device *dev, unsigned int txqueue); > > netdev_tx_t eip_start_xmit(struct sk_buff *skb, struct net_device *dev); > > void eip_set_multicast_list(struct net_device...
2019 Nov 26
9
[net-next V3 0/2] drivers: net: virtio_net: implement
This series add two important features. One of them changes the .ndo_tx_timeout to include an extra parameter to identify the stuck queue. Many drivers are using a nester loop to identify which queue is stooped/stucked. This is a redundant work since dev_watchdog is doing exactly the same thing. This is so interesting for other drivers to in terms of code optimization. The second part (second
2019 Nov 26
9
[net-next V3 0/2] drivers: net: virtio_net: implement
This series add two important features. One of them changes the .ndo_tx_timeout to include an extra parameter to identify the stuck queue. Many drivers are using a nester loop to identify which queue is stooped/stucked. This is a redundant work since dev_watchdog is doing exactly the same thing. This is so interesting for other drivers to in terms of code optimization. The second part (second
2019 Dec 10
4
[PATCH net-next v12 0/3] netdev: ndo_tx_timeout cleanup
Yet another forward declaration I missed. Hopfully the last one ... A bunch of drivers want to know which tx queue triggered a timeout, and virtio wants to do the same. We actually have the info to hand, let's just pass it on to drivers. Note: tested with an experimental virtio patch by Julio. That patch itself isn't ready yet though, so not included. Other drivers compiled only.