Re: [ovs-dev] [patch net-next RFC v2 2/6] skbuff: add "missed_flow" flag

2014-03-31 Thread Neil Jerram
> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > index 03db95a..0100c2f 100644 > --- a/include/linux/skbuff.h > +++ b/include/linux/skbuff.h > @@ -567,6 +567,7 @@ struct sk_buff { >* headers if needed >*/ > __u8encapsulation:1; > + __u8

Re: [ovs-dev] [patch net-next RFC v2 2/6] skbuff: add "missed_flow" flag

2014-03-27 Thread Jiri Pirko
Thu, Mar 27, 2014 at 11:31:42AM CET, nicolas.dich...@6wind.com wrote: >Le 26/03/2014 17:31, Jiri Pirko a écrit : >>This flag sets incoming switch device in order to let know that the flow >>which the skb is part of is missed. Listener may react to it >>appropriately, >> >>Signed-off-by: Jiri Pirko

Re: [ovs-dev] [patch net-next RFC v2 2/6] skbuff: add "missed_flow" flag

2014-03-27 Thread Nicolas Dichtel
Le 26/03/2014 17:31, Jiri Pirko a écrit : This flag sets incoming switch device in order to let know that the flow which the skb is part of is missed. Listener may react to it appropriately, Signed-off-by: Jiri Pirko --- include/linux/filter.h | 1 + include/linux/skbuff.h | 13

Re: [ovs-dev] [patch net-next RFC v2 2/6] skbuff: add "missed_flow" flag

2014-03-26 Thread Jiri Pirko
Wed, Mar 26, 2014 at 05:59:12PM CET, alexei.starovoi...@gmail.com wrote: >On Wed, Mar 26, 2014 at 9:31 AM, Jiri Pirko wrote: >> This flag sets incoming switch device in order to let know that the flow >> which the skb is part of is missed. Listener may react to it >> appropriately, >> >> Signed-of

Re: [ovs-dev] [patch net-next RFC v2 2/6] skbuff: add "missed_flow" flag

2014-03-26 Thread Alexei Starovoitov
On Wed, Mar 26, 2014 at 9:31 AM, Jiri Pirko wrote: > This flag sets incoming switch device in order to let know that the flow > which the skb is part of is missed. Listener may react to it > appropriately, > > Signed-off-by: Jiri Pirko > --- > include/linux/filter.h | 1 + > include/linux/skbuf

[ovs-dev] [patch net-next RFC v2 2/6] skbuff: add "missed_flow" flag

2014-03-26 Thread Jiri Pirko
This flag sets incoming switch device in order to let know that the flow which the skb is part of is missed. Listener may react to it appropriately, Signed-off-by: Jiri Pirko --- include/linux/filter.h | 1 + include/linux/skbuff.h | 13 + net/core/filter.c | 3 +++ 3 files ch