Re: [ovs-dev] [PATCH 2/2] xlate: Use datapath clone action for patch port translation

2017-06-07 Thread Andy Zhou
On Tue, Jun 6, 2017 at 5:01 PM, Ben Pfaff wrote: > On Fri, May 26, 2017 at 08:47:45PM -0700, Andy Zhou wrote: >> When available, use datapath 'clone' for patch port translation. >> Clone provides a stronger guarantee that packet will be restored >> after going through a patch port,

Re: [ovs-dev] [PATCH 2/2] xlate: Use datapath clone action for patch port translation

2017-06-06 Thread Ben Pfaff
On Fri, May 26, 2017 at 08:47:45PM -0700, Andy Zhou wrote: > When available, use datapath 'clone' for patch port translation. > Clone provides a stronger guarantee that packet will be restored > after going through a patch port, Even in case the packet is > NAT'd by the bridge behind the patch

[ovs-dev] [PATCH 2/2] xlate: Use datapath clone action for patch port translation

2017-05-26 Thread Andy Zhou
When available, use datapath 'clone' for patch port translation. Clone provides a stronger guarantee that packet will be restored after going through a patch port, Even in case the packet is NAT'd by the bridge behind the patch port. Signed-off-by: Andy Zhou ---