Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 255978
b: refs/heads/master
c: 213ade8
h: refs/heads/master
v: v3
  • Loading branch information
Jesse Gross authored and David S. Miller committed Jun 28, 2011
1 parent f08fa7c commit 820865c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 95cab7386bef62f8c7535d4726573ce230778e7b
refs/heads/master: 213ade8ca8c854435d99e4d2927655b2ae4191e9
5 changes: 4 additions & 1 deletion trunk/drivers/net/vmxnet3/vmxnet3_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,10 @@ vmxnet3_rq_rx_complete(struct vmxnet3_rx_queue *rq,
if (unlikely(rcd->ts))
__vlan_hwaccel_put_tag(skb, rcd->tci);

netif_receive_skb(skb);
if (adapter->netdev->features & NETIF_F_LRO)
netif_receive_skb(skb);
else
napi_gro_receive(&rq->napi, skb);

ctx->skb = NULL;
}
Expand Down

0 comments on commit 820865c

Please sign in to comment.