[ovs-dev] [PATCH v7] conntrack: support default timeout policy get/set cmd for netdev datapath

2022-01-18 Thread wenxu
From: wenxu Now, the default timeout policy for netdev datapath is hard codeing. In some case show or modify is needed. Add command for get/set default timeout policy. Using like this: ovs-appctl dpctl/ct-get-default-tp [dp] ovs-appctl dpctl/ct-set-default-tp [dp] policies Signed-off-by: wenxu

Re: [ovs-dev] [PATCH 0/2] Patches to branch for 2.17.

2022-01-18 Thread Ilya Maximets
On 1/18/22 20:24, Ilya Maximets wrote: > > Ilya Maximets (2): > Prepare for 2.17.0. > Prepare for post-2.17.0 (2.17.90). > > Documentation/faq/releases.rst | 2 ++ > NEWS | 6 +- > configure.ac | 2 +- > debian/changelog | 10

Re: [ovs-dev] [PATCH v5 00/27] dpif-netdev: Parallel offload processing

2022-01-18 Thread Ilya Maximets
On 9/15/21 15:45, Maxime Coquelin wrote: > Hi, > > On 9/8/21 11:47 AM, Gaetan Rivet wrote: >> This patch series aims to improve the performance of the management >> of hw-offloads in dpif-netdev. In the current version, some setup >> will experience high memory usage and poor latency between a

Re: [ovs-dev] [RFC ovn] Add LTS section to release documentation.

2022-01-18 Thread Han Zhou
On Wed, Jan 12, 2022 at 1:35 PM Mark Michelson wrote: > > OVN LTS releases have a lot of ambiguity, so this is intended to codify > LTS support and cadence. > > Signed-off-by: Mark Michelson > --- > Documentation/internals/release-process.rst | 28 + > 1 file changed, 18

Re: [ovs-dev] [PATCH 2/2] Prepare for post-2.17.0 (2.17.90).

2022-01-18 Thread Flavio Leitner
On Tue, Jan 18, 2022 at 08:24:43PM +0100, Ilya Maximets wrote: > Signed-off-by: Ilya Maximets > --- Acked-by: Flavio Leitner ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH 1/2] Prepare for 2.17.0.

2022-01-18 Thread Flavio Leitner
On Tue, Jan 18, 2022 at 08:24:42PM +0100, Ilya Maximets wrote: > Signed-off-by: Ilya Maximets > --- Acked-by: Flavio Leitner ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH] netdev-dpdk: prepare for tso offload for tx copy packet

2022-01-18 Thread Flavio Leitner
On Thu, Jan 13, 2022 at 04:23:17PM +0800, Harold Huang wrote: > From: Harold Huang > > When one flow is output to multiple egress ports, OVS copy the packets > and send the copy packets to the intermediate ports. The original packets > is sent to the last port. If the intermediate port is a dpdk

Re: [ovs-dev] [PATCH 2/2] Prepare for post-2.17.0 (2.17.90).

2022-01-18 Thread Aaron Conole
Ilya Maximets writes: > Signed-off-by: Ilya Maximets > --- Acked-by: Aaron Conole ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH 1/2] Prepare for 2.17.0.

2022-01-18 Thread Aaron Conole
Ilya Maximets writes: > Signed-off-by: Ilya Maximets > --- Acked-by: Aaron Conole ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH v1] conntrack: Fix FTP NAT when TCP but not IP offload is supported

2022-01-18 Thread Mike Pattrick
On Tue, Jan 18, 2022 at 2:24 PM Flavio Leitner wrote: > > On Tue, Jan 18, 2022 at 12:27:21PM -0500, Mike Pattrick wrote: > > On Tue, Jan 18, 2022 at 11:53 AM Flavio Leitner wrote: > > > > > > On Mon, Jan 17, 2022 at 09:47:18AM -0500, Mike Pattrick wrote: > > > > On Fri, Jan 14, 2022 at 4:13 PM

[ovs-dev] [PATCH 2/2] Prepare for post-2.17.0 (2.17.90).

2022-01-18 Thread Ilya Maximets
Signed-off-by: Ilya Maximets --- NEWS | 4 configure.ac | 2 +- debian/changelog | 6 ++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ba0f4282c..ff40da872 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Post-v2.17.0

[ovs-dev] [PATCH 1/2] Prepare for 2.17.0.

2022-01-18 Thread Ilya Maximets
Signed-off-by: Ilya Maximets --- Documentation/faq/releases.rst | 2 ++ NEWS | 2 +- configure.ac | 2 +- debian/changelog | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Documentation/faq/releases.rst

[ovs-dev] [PATCH 0/2] Patches to branch for 2.17.

2022-01-18 Thread Ilya Maximets
Ilya Maximets (2): Prepare for 2.17.0. Prepare for post-2.17.0 (2.17.90). Documentation/faq/releases.rst | 2 ++ NEWS | 6 +- configure.ac | 2 +- debian/changelog | 10 -- 4 files changed, 16 insertions(+), 4

Re: [ovs-dev] [PATCH v1] conntrack: Fix FTP NAT when TCP but not IP offload is supported

2022-01-18 Thread Flavio Leitner
On Tue, Jan 18, 2022 at 12:27:21PM -0500, Mike Pattrick wrote: > On Tue, Jan 18, 2022 at 11:53 AM Flavio Leitner wrote: > > > > On Mon, Jan 17, 2022 at 09:47:18AM -0500, Mike Pattrick wrote: > > > On Fri, Jan 14, 2022 at 4:13 PM Flavio Leitner wrote: > > > > > > > > On Fri, Jan 14, 2022 at

Re: [ovs-dev] [PATCH v1] conntrack: Fix FTP NAT when TCP but not IP offload is supported

2022-01-18 Thread Mike Pattrick
On Tue, Jan 18, 2022 at 11:53 AM Flavio Leitner wrote: > > On Mon, Jan 17, 2022 at 09:47:18AM -0500, Mike Pattrick wrote: > > On Fri, Jan 14, 2022 at 4:13 PM Flavio Leitner wrote: > > > > > > On Fri, Jan 14, 2022 at 03:50:52PM -0500, Mike Pattrick wrote: > > > > On Fri, Jan 14, 2022 at 3:33 PM

Re: [ovs-dev] [PATCH v1] conntrack: Fix FTP NAT when TCP but not IP offload is supported

2022-01-18 Thread Flavio Leitner
On Mon, Jan 17, 2022 at 09:47:18AM -0500, Mike Pattrick wrote: > On Fri, Jan 14, 2022 at 4:13 PM Flavio Leitner wrote: > > > > On Fri, Jan 14, 2022 at 03:50:52PM -0500, Mike Pattrick wrote: > > > On Fri, Jan 14, 2022 at 3:33 PM Flavio Leitner wrote: > > > > > > > > > > > > Hi Mike, > > > > > > >

Re: [ovs-dev] [ovs-dev v4] ofproto: add refcount to ofproto to fix ofproto use-after-free

2022-01-18 Thread 0-day Robot
Bleep bloop. Greetings Peng He, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: ERROR: Author Peng He needs to sign off. WARNING: Unexpected sign-offs from developers who are not

[ovs-dev] [ovs-dev v4] ofproto: add refcount to ofproto to fix ofproto use-after-free

2022-01-18 Thread Peng He
From hepeng: https://patchwork.ozlabs.org/project/openvswitch/patch/20200717015041.82746-1-hepeng.0...@bytedance.com/#2487473 also from guohongzhi : http://patchwork.ozlabs.org/project/openvswitch/patch/20200306130555.19884-1-guohongz...@huawei.com/ also from a discussion about the mixing use of

Re: [ovs-dev] [ovs-dev v3] ofproto: add refcount to ofproto to fix ofproto use-after-free

2022-01-18 Thread 贺鹏
Ah, found a bug, will submit a v4. Peng He 于2022年1月18日周二 21:08写道: > From hepeng: > > https://patchwork.ozlabs.org/project/openvswitch/patch/20200717015041.82746-1-hepeng.0...@bytedance.com/#2487473 > > also from guohongzhi : > >

Re: [ovs-dev] [PATCH] system-tso: Skip encap tests when userspace TSO is enabled.

2022-01-18 Thread David Marchand
On Wed, Jan 5, 2022 at 3:58 PM Flavio Leitner wrote: > > It seems Linux native tunnel configuration changed to enable > checksum by default and that causes the check-system-tso unit > test below to fail: > 10: datapath - ping over vxlan tunnelFAILED (system-traffic.at:248) > > That happens

Re: [ovs-dev] [PATCH 1/3] python: idl: Resend requested but not acked conditions when reconnecting.

2022-01-18 Thread Terry Wilson
On Tue, Jan 11, 2022 at 10:37 AM Dumitru Ceara wrote: > > When reconnecting forget about in-flight monitor condition changes > if the user requested a newer condition already. > > This matches the C implementation, in ovsdb_cs_db_sync_condition(). > > Fixes: 46d44cf3be0d ("python: idl: Add

Re: [ovs-dev] [PATCH] ofproto-dpif-xlate: Fix packet drops with decap(packet_type(ns=1, type=0x8848).

2022-01-18 Thread Martin Varghese
On Tue, Jan 18, 2022 at 01:29:12PM +0100, Ilya Maximets wrote: > On 1/18/22 13:10, Martin Varghese wrote: > > From: Martin Varghese > > > > Added PT_MPLS_MC support in function xlate_generic_decap_action to fix > > packet > > drops when decap(packet_type(ns=1,type=0x8848) action is applied. > >

Re: [ovs-dev] [PATCH] ofproto: fix use-after-free for "ofproto".

2022-01-18 Thread wangyunjian via dev
http://patchwork.ozlabs.org/project/openvswitch/patch/20200306130555.19884-1-guohongz...@huawei.com/ This patch has been applied. But this patch do not fix the problem I stated. I think this problem is that hmap does not support concurrent access. Thanks, Yunjian From: 贺鹏

Re: [ovs-dev] [ovs-dev v3] ofproto: add refcount to ofproto to fix ofproto use-after-free

2022-01-18 Thread 0-day Robot
Bleep bloop. Greetings Peng He, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: ERROR: Author Peng He needs to sign off. WARNING: Unexpected sign-offs from developers who are not

[ovs-dev] [ovs-dev v3] ofproto: add refcount to ofproto to fix ofproto use-after-free

2022-01-18 Thread Peng He
From hepeng: https://patchwork.ozlabs.org/project/openvswitch/patch/20200717015041.82746-1-hepeng.0...@bytedance.com/#2487473 also from guohongzhi : http://patchwork.ozlabs.org/project/openvswitch/patch/20200306130555.19884-1-guohongz...@huawei.com/ also from a discussion about the mixing use of

Re: [ovs-dev] [PATCH v3 0/5] PMD docs and ALB status.

2022-01-18 Thread Ilya Maximets
On 12/20/21 15:38, Kevin Traynor wrote: > The first patches are small fixes and additions to the PMD documentation > as was I reading it. > > The last patch removes the experimental tag from PMD Auto Load Balance. > > v3: > Fixed checkpatch warning. > Added Sunil's Acks. > > v2: > Fixes as per

Re: [ovs-dev] [PATCH] ofproto-dpif-xlate: Fix packet drops with decap(packet_type(ns=1, type=0x8848).

2022-01-18 Thread Ilya Maximets
On 1/18/22 13:10, Martin Varghese wrote: > From: Martin Varghese > > Added PT_MPLS_MC support in function xlate_generic_decap_action to fix packet > drops when decap(packet_type(ns=1,type=0x8848) action is applied. > > Fixes: 1917ace89364("Encap & Decap actions for MPLS packet type.") >

[ovs-dev] [PATCH] ofproto-dpif-xlate: Fix packet drops with decap(packet_type(ns=1, type=0x8848).

2022-01-18 Thread Martin Varghese
From: Martin Varghese Added PT_MPLS_MC support in function xlate_generic_decap_action to fix packet drops when decap(packet_type(ns=1,type=0x8848) action is applied. Fixes: 1917ace89364("Encap & Decap actions for MPLS packet type.") Signed-off-by: Martin Varghese ---

Re: [ovs-dev] [PATCH] vswitchd.xml: Add missing tx-steering PMD option.

2022-01-18 Thread Kevin Traynor
On 17/01/2022 22:25, Maxime Coquelin wrote: This patch documents PMD's other_config:tx-steering option. Signed-off-by: Maxime Coquelin --- vswitchd/vswitch.xml | 22 ++ 1 file changed, 22 insertions(+) diff --git a/vswitchd/vswitch.xml b/vswitchd/vswitch.xml index