Re: [ovs-dev] [PATCH 08/18] flow: Split flow_extract

2012-12-29 Thread Simon Horman
On Fri, Dec 28, 2012 at 07:32:05AM +0200, Jarno Rajahalme wrote: > On Dec 27, 2012, at 7:23 , ext Simon Horman wrote: > > --- > > datapath/datapath.c |2 +- > > lib/flow.c | 34 +- > > lib/flow.h |2 ++ > > 3 files changed, 32 insertions(+),

Re: [ovs-dev] [PATCH 08/18] flow: Split flow_extract

2012-12-27 Thread Jarno Rajahalme
On Dec 27, 2012, at 7:23 , ext Simon Horman wrote: > --- > datapath/datapath.c |2 +- > lib/flow.c | 34 +- > lib/flow.h |2 ++ > 3 files changed, 32 insertions(+), 6 deletions(-) > > diff --git a/datapath/datapath.c b/datapath/datapath.c >

Re: [ovs-dev] [PATCH 08/18] flow: Split flow_extract

2012-12-27 Thread Simon Horman
On Thu, Dec 27, 2012 at 01:19:47PM -0800, Ben Pfaff wrote: > On Thu, Dec 27, 2012 at 02:23:09PM +0900, Simon Horman wrote: > > Split the L3 and above portion of flow_extract() out into > > flow_extract_l3_onwards() and call flow_extract_l3_onwards() > > from flow_extract(). > > > > This is to allo

Re: [ovs-dev] [PATCH 08/18] flow: Split flow_extract

2012-12-27 Thread Ben Pfaff
On Thu, Dec 27, 2012 at 02:23:09PM +0900, Simon Horman wrote: > Split the L3 and above portion of flow_extract() out into > flow_extract_l3_onwards() and call flow_extract_l3_onwards() > from flow_extract(). > > This is to allow re-extraction of l3 and higher information using > flow->encap_dl_typ

[ovs-dev] [PATCH 08/18] flow: Split flow_extract

2012-12-26 Thread Simon Horman
Split the L3 and above portion of flow_extract() out into flow_extract_l3_onwards() and call flow_extract_l3_onwards() from flow_extract(). This is to allow re-extraction of l3 and higher information using flow->encap_dl_type which may be set using information contained in actions. Signed-off-by: