Re: [PATCH v2 1/2] 6lowpan: Make a copy of skb's delivered to 6lowpan

2012-08-31 Thread Alan Ott
On 08/31/2012 03:01 AM, Eric Dumazet wrote: > On Wed, 2012-08-29 at 22:39 -0400, Alan Ott wrote: >> Since lowpan_process_data() modifies the skb (by calling skb_pull()), we >> need our own copy so that it doesn't affect the data received by other >> protcols (in this case, af_ieee802154). >> >> Sig

Re: [PATCH v2 1/2] 6lowpan: Make a copy of skb's delivered to 6lowpan

2012-08-31 Thread Eric Dumazet
On Wed, 2012-08-29 at 22:39 -0400, Alan Ott wrote: > Since lowpan_process_data() modifies the skb (by calling skb_pull()), we > need our own copy so that it doesn't affect the data received by other > protcols (in this case, af_ieee802154). > > Signed-off-by: Alan Ott > --- > net/ieee802154/6low

[PATCH v2 1/2] 6lowpan: Make a copy of skb's delivered to 6lowpan

2012-08-29 Thread Alan Ott
Since lowpan_process_data() modifies the skb (by calling skb_pull()), we need our own copy so that it doesn't affect the data received by other protcols (in this case, af_ieee802154). Signed-off-by: Alan Ott --- net/ieee802154/6lowpan.c |9 - 1 files changed, 8 insertions(+), 1 delet