Skip to content

Commit e33d0ba

Browse files
edumazetdavem330
authored andcommitted
net-gro: reset skb->truesize in napi_reuse_skb()
Recycling skb always had been very tough... This time it appears GRO layer can accumulate skb->truesize adjustments made by drivers when they attach a fragment to skb. skb_gro_receive() can only subtract from skb->truesize the used part of a fragment. I spotted this problem seeing TcpExtPruneCalled and TcpExtTCPRcvCollapsed that were unexpected with a recent kernel, where TCP receive window should be sized properly to accept traffic coming from a driver not overshooting skb->truesize. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 240a12d commit e33d0ba

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

net/core/dev.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4043,6 +4043,7 @@ static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
40434043
skb->vlan_tci = 0;
40444044
skb->dev = napi->dev;
40454045
skb->skb_iif = 0;
4046+
skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
40464047

40474048
napi->skb = skb;
40484049
}

0 commit comments

Comments
 (0)