Re: [PATCH net] macvtap: segmented packet is consumed

2016-05-08 Thread David Miller
From: Eric Dumazet Date: Fri, 06 May 2016 05:58:21 -0700 > From: Eric Dumazet > > If GSO packet is segmented and its segments are properly queued, > we call consume_skb() instead of kfree_skb() to be drop monitor > friendly. > > Fixes:

Re: [PATCH net] macvtap: segmented packet is consumed

2016-05-07 Thread Shmulik Ladkani
Hi, On Fri, 06 May 2016 05:58:21 -0700 Eric Dumazet wrote: > From: Eric Dumazet > > If GSO packet is segmented and its segments are properly queued, > we call consume_skb() instead of kfree_skb() to be drop monitor > friendly. > > Fixes:

[PATCH net] macvtap: segmented packet is consumed

2016-05-06 Thread Eric Dumazet
From: Eric Dumazet If GSO packet is segmented and its segments are properly queued, we call consume_skb() instead of kfree_skb() to be drop monitor friendly. Fixes: 3e4f8b7873709 ("macvtap: Perform GSO on forwarding path.") Signed-off-by: Eric Dumazet