Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-11 Thread Russell Bryant
On Wed, Nov 11, 2015 at 1:43 PM, Justin Pettit wrote: > > > On Nov 10, 2015, at 2:01 PM, Russell Bryant wrote: > > > > On 11/10/2015 04:51 PM, Joe Stringer wrote: > >> On 9 November 2015 at 15:36, Jarno Rajahalme wrote: > >>> > On Nov 9, 2015, at 10:56 AM, Joe Stringer > wrote: > > >

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-11 Thread Justin Pettit
> On Nov 10, 2015, at 2:01 PM, Russell Bryant wrote: > > On 11/10/2015 04:51 PM, Joe Stringer wrote: >> On 9 November 2015 at 15:36, Jarno Rajahalme wrote: >>> On Nov 9, 2015, at 10:56 AM, Joe Stringer wrote: If conntrack recirculates, it should not stop processing the current

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-11 Thread Joe Stringer
On 10 November 2015 at 14:01, Russell Bryant wrote: > On 11/10/2015 04:51 PM, Joe Stringer wrote: >> On 9 November 2015 at 15:36, Jarno Rajahalme wrote: >>> On Nov 9, 2015, at 10:56 AM, Joe Stringer wrote: If conntrack recirculates, it should not stop processing the current p

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-10 Thread Russell Bryant
On 11/10/2015 04:51 PM, Joe Stringer wrote: > On 9 November 2015 at 15:36, Jarno Rajahalme wrote: >> >>> On Nov 9, 2015, at 10:56 AM, Joe Stringer wrote: >>> >>> If conntrack recirculates, it should not stop processing the current >>> pipeline. The cloned packet will begin with a fresh action set

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-10 Thread Joe Stringer
On 9 November 2015 at 15:36, Jarno Rajahalme wrote: > >> On Nov 9, 2015, at 10:56 AM, Joe Stringer wrote: >> >> If conntrack recirculates, it should not stop processing the current >> pipeline. The cloned packet will begin with a fresh action set in the >> table specified with the current metadat

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-10 Thread Joe Stringer
On 9 November 2015 at 15:33, Jarno Rajahalme wrote: > > On Nov 9, 2015, at 12:50 PM, Joe Stringer wrote: > > On 9 November 2015 at 10:56, Joe Stringer wrote: > > If conntrack recirculates, it should not stop processing the current > pipeline. The cloned packet will begin with a fresh action set

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-09 Thread Jarno Rajahalme
> On Nov 9, 2015, at 12:50 PM, Joe Stringer wrote: > > On 9 November 2015 at 10:56, Joe Stringer > wrote: >> If conntrack recirculates, it should not stop processing the current >> pipeline. The cloned packet will begin with a fresh action set in the >> table spec

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-09 Thread Jarno Rajahalme
> On Nov 9, 2015, at 10:56 AM, Joe Stringer wrote: > > If conntrack recirculates, it should not stop processing the current > pipeline. The cloned packet will begin with a fresh action set in the > table specified with the current metadata; The current copy of the As discussed, the action set i

Re: [ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-09 Thread Joe Stringer
On 9 November 2015 at 10:56, Joe Stringer wrote: > If conntrack recirculates, it should not stop processing the current > pipeline. The cloned packet will begin with a fresh action set in the > table specified with the current metadata; The current copy of the > packet will continue processing, in

[ovs-dev] [PATCH 1/2] ofproto-dpif-xlate: Don't stop processing after ct.

2015-11-09 Thread Joe Stringer
If conntrack recirculates, it should not stop processing the current pipeline. The cloned packet will begin with a fresh action set in the table specified with the current metadata; The current copy of the packet will continue processing, including to return back to prior resubmit() calls. Reporte