mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 15:13:55 +08:00
net: aquantia: Fix internal stats calculation on rx
skb len should be fetched before gro_receive - otherwise we may get wrong or even outdated skb data. Signed-off-by: Igor Russkikh <igor.russkikh@aquantia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8e1c072fcb
commit
9ec03bf639
@ -279,10 +279,10 @@ int aq_ring_rx_clean(struct aq_ring_s *self,
|
||||
|
||||
skb_record_rx_queue(skb, self->idx);
|
||||
|
||||
napi_gro_receive(napi, skb);
|
||||
|
||||
++self->stats.rx.packets;
|
||||
self->stats.rx.bytes += skb->len;
|
||||
|
||||
napi_gro_receive(napi, skb);
|
||||
}
|
||||
|
||||
err_exit:
|
||||
|
Loading…
Reference in New Issue
Block a user