Re: [ovs-dev] [PATCH] tunneling: Combining actions to avoid packet recirculation in tunnel encapsulation.

2017-01-05 Thread Jarno Rajahalme
>> From: Jarno Rajahalme [mailto:ja...@ovn.org] >> Sent: Wednesday, January 4, 2017 12:00 AM >> To: Chandran, Sugesh <sugesh.chand...@intel.com> >> Cc: zoltan.bal...@ericsson.com; d...@openvswitch.org >> Subject: Re: [ovs-dev] [PATCH] tunneling: Combining act

Re: [ovs-dev] [PATCH] tunneling: Combining actions to avoid packet recirculation in tunnel encapsulation.

2017-01-05 Thread Chandran, Sugesh
; > Cc: zoltan.bal...@ericsson.com; d...@openvswitch.org > Subject: Re: [ovs-dev] [PATCH] tunneling: Combining actions to avoid packet > recirculation in tunnel encapsulation. > > Sugesh, > > So the issue is that instead of recirculating on the datapath, we can compute > the

Re: [ovs-dev] [PATCH] tunneling: Combining actions to avoid packet recirculation in tunnel encapsulation.

2017-01-03 Thread Jarno Rajahalme
Sugesh, So the issue is that instead of recirculating on the datapath, we can compute the “recirculation” actions on the tunnel push translation time, as these actions only depend on the tunnel attributes? This explains why the recirculation in this case is unnecessary, and mentioning this in

[ovs-dev] [PATCH] tunneling: Combining actions to avoid packet recirculation in tunnel encapsulation.

2016-12-30 Thread Sugesh Chandran
Currently the tunnel packets are recirculated in OVS after the tunnel encapsulation. This patch combines the post tunnel actions with the tunnel push to avoid unnecessary recirculation. Two new datapath actions OVS_ATTR_COMBINE_START and OVS_ATTR_COMBINE_END are added to implement this feature.