Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09bf1c10 authored by Sebastian Hesselbarth's avatar Sebastian Hesselbarth Committed by David S. Miller
Browse files

net: mv643xx_eth: Add GRO support



This patch adds GRO support to mv643xx_eth by making it invoke
napi_gro_receive instead of netif_receive_skb.

Signed-off-by: default avatarSoeren Moch <smoch@web.de>
Signed-off-by: default avatarSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Acked-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c0317998
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -604,7 +604,7 @@ static int rxq_process(struct rx_queue *rxq, int budget)
			lro_receive_skb(&rxq->lro_mgr, skb, (void *)cmd_sts);
			lro_receive_skb(&rxq->lro_mgr, skb, (void *)cmd_sts);
			lro_flush_needed = 1;
			lro_flush_needed = 1;
		} else
		} else
			netif_receive_skb(skb);
			napi_gro_receive(&mp->napi, skb);


		continue;
		continue;