Re: [PATCH net-next 1/3] gro: Pull headers into skb head for 1st skb in gro list

2015-07-03 Thread Eric Dumazet
On Fri, 2015-07-03 at 11:36 -0700, Tom Herbert wrote: > On Thu, Jul 2, 2015 at 9:50 PM, Eric Dumazet wrote: > > On Thu, 2015-07-02 at 14:04 -0700, Tom Herbert wrote: > >> When setting up the first skb in a gro list we ensure that all the > >> headers up to skb_gro_offset have been pulled into head

Re: [PATCH net-next 1/3] gro: Pull headers into skb head for 1st skb in gro list

2015-07-03 Thread Tom Herbert
On Thu, Jul 2, 2015 at 9:50 PM, Eric Dumazet wrote: > On Thu, 2015-07-02 at 14:04 -0700, Tom Herbert wrote: >> When setting up the first skb in a gro list we ensure that all the >> headers up to skb_gro_offset have been pulled into head. In subsequent >> uses of this skb (e.g. determining same_flo

Re: [PATCH net-next 1/3] gro: Pull headers into skb head for 1st skb in gro list

2015-07-02 Thread Eric Dumazet
On Thu, 2015-07-02 at 14:04 -0700, Tom Herbert wrote: > When setting up the first skb in a gro list we ensure that all the > headers up to skb_gro_offset have been pulled into head. In subsequent > uses of this skb (e.g. determining same_flow) it is assumed that the > headers can be accessed in the

[PATCH net-next 1/3] gro: Pull headers into skb head for 1st skb in gro list

2015-07-02 Thread Tom Herbert
When setting up the first skb in a gro list we ensure that all the headers up to skb_gro_offset have been pulled into head. In subsequent uses of this skb (e.g. determining same_flow) it is assumed that the headers can be accessed in the skb head. Signed-off-by: Tom Herbert --- net/core/dev.c |