Skip to content

Commit

Permalink
e1000e: Add GRO support
Browse files Browse the repository at this point in the history
This patch adds GRO support to e1000e by making it invoke napi_gro_receive
instead of netif_receive_skb.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Herbert Xu authored and David S. Miller committed Dec 16, 2008
1 parent b240a0e commit 89c88b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/e1000e/netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static void e1000_receive_skb(struct e1000_adapter *adapter,
vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
le16_to_cpu(vlan));
else
netif_receive_skb(skb);
napi_gro_receive(&adapter->napi, skb);
}

/**
Expand Down

0 comments on commit 89c88b1

Please sign in to comment.