e1000e: Invoke VLAN GRO handler
Now that VLAN has GRO support as well, we can call its GRO handler as well. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
288379f050
commit
c405b82816
@@ -99,8 +99,8 @@ static void e1000_receive_skb(struct e1000_adapter *adapter,
|
|||||||
skb->protocol = eth_type_trans(skb, netdev);
|
skb->protocol = eth_type_trans(skb, netdev);
|
||||||
|
|
||||||
if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
|
if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
|
||||||
vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
|
vlan_gro_receive(&adapter->napi, adapter->vlgrp,
|
||||||
le16_to_cpu(vlan));
|
le16_to_cpu(vlan), skb);
|
||||||
else
|
else
|
||||||
napi_gro_receive(&adapter->napi, skb);
|
napi_gro_receive(&adapter->napi, skb);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user