mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 00:11:22 +00:00
myri10ge: fix the invokation of lro_flush_all
Fix the way we check whether lro_flush_all should be called in the myri10ge driver. Signed-off-by: Brice Goglin <brice@myri.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
38aab07c14
commit
18af3e7c45
@ -1422,6 +1422,7 @@ myri10ge_clean_rx_done(struct myri10ge_slice_state *ss, int budget)
|
||||
{
|
||||
struct myri10ge_rx_done *rx_done = &ss->rx_done;
|
||||
struct myri10ge_priv *mgp = ss->mgp;
|
||||
struct net_device *netdev = mgp->dev;
|
||||
unsigned long rx_bytes = 0;
|
||||
unsigned long rx_packets = 0;
|
||||
unsigned long rx_ok;
|
||||
@ -1455,7 +1456,7 @@ myri10ge_clean_rx_done(struct myri10ge_slice_state *ss, int budget)
|
||||
ss->stats.rx_packets += rx_packets;
|
||||
ss->stats.rx_bytes += rx_bytes;
|
||||
|
||||
if (myri10ge_lro)
|
||||
if (netdev->features & NETIF_F_LRO)
|
||||
lro_flush_all(&rx_done->lro_mgr);
|
||||
|
||||
/* restock receive rings if needed */
|
||||
|
Loading…
Reference in New Issue
Block a user