[ovs-dev] [PATCH ovn v6 1/4] northd: update stage-name if changed

2021-07-03 Thread Mark Gray
If a new table is added to a logical flow pipeline, the mapping between 'external_ids:stage-name' from the 'Logical_Flow' table in the 'OVN_Southbound' database and the 'stage' number may change for some tables. If 'ovn-northd' is started against a populated Southbound database, 'external_ids' wil

[ovs-dev] [PATCH ovn v6 0/4] northd: Refactor Logical Flows for routers with DNAT/Load Balancers

2021-07-03 Thread Mark Gray
There are a number of issues with logical flows in the DNAT/SNAT/DEFRAG tables. This series addresses these issues. This is a continuation of the series https://patchwork.ozlabs.org/project/ovn/list/?series=245191. As additional changes and patches have been added and the scope of the patch is b

[ovs-dev] [PATCH ovn v6 3/4] ovn.at: Fix whitespace

2021-07-03 Thread Mark Gray
Signed-off-by: Mark Gray --- tests/ovn.at | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/ovn.at b/tests/ovn.at index eb9bccdc7053..e5d8869a8417 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -5888,7 +5888,7 @@ test_dhcp() { local expect_resume=: lo

[ovs-dev] [PATCH ovn v6 4/4] AUTHORS: update email for Mark Gray

2021-07-03 Thread Mark Gray
Update email address for Mark Gray Signed-off-by: Mark Gray --- .mailmap| 1 + AUTHORS.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index f01664e5c1d1..bc32255b5cc4 100644 --- a/.mailmap +++ b/.mailmap @@ -52,6 +52,7 @@ Joe Stringer Justin

[ovs-dev] [PATCH ovn v6 2/4] northd: Refactor Logical Flows for routers with DNAT/Load Balancers

2021-07-03 Thread Mark Gray
This patch addresses a number of interconnected issues with Gateway Routers that have Load Balancing enabled: 1) In the router pipeline, we have the following stages to handle dnat and unsnat. - Stage 4 : lr_in_defrag (dnat zone) - Stage 5 : lr_in_unsnat (snat zone) - Stage 6 : lr_in_dnat (d

[ovs-dev] [PATCH 0/2] fixes for ovs'comments

2021-07-03 Thread wangyunjian
From: Yunjian Wang This series include two fixes patches for ovs'comments Yunjian Wang (2): docs: fix wrong quote ovs: fix wrong quote Documentation/internals/charter.rst | 14 +-- .../contributing/submitting-patches.rst | 4 ++-- Documentation/topics/windows.rst

[ovs-dev] [PATCH 1/2] docs: fix wrong quote

2021-07-03 Thread wangyunjian
From: Yunjian Wang Remove the coma character by using ' or " character. Signed-off-by: Yunjian Wang --- Documentation/internals/charter.rst| 14 +++--- .../internals/contributing/submitting-patches.rst | 4 ++-- Documentation/topics/windows.rst | 4

[ovs-dev] [PATCH 2/2] ovs: fix wrong quote

2021-07-03 Thread wangyunjian
From: Yunjian Wang Remove the coma character by using ' and " character. Signed-off-by: Yunjian Wang --- lib/dpif-netdev.c | 4 ++-- lib/flow.h| 24 ovsdb/raft.c | 24 3 files changed, 26 insertions(+), 26 deletions(-) diff --git

Re: [ovs-dev] [PATCH 2/2] ovs: fix wrong quote

2021-07-03 Thread 0-day Robot
Bleep bloop. Greetings wangyunjian, 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: WARNING: Line lacks whitespace around operator #43 FILE: lib/flow.h:598:

Re: [ovs-dev] [PATCH] netdev-linux: Ignore TSO packets when TSO is not enabled for userspace

2021-07-03 Thread Flavio Leitner
Hi, Thanks for fixing this bug! On Fri, Jul 02, 2021 at 10:22:36AM -0400, Eelco Chaudron wrote: > When TSO is disabled from a userspace forwarding datapath perspective, > but TSO has been wrongly enabled on the kernel side, log a warning > message, and drop the packet. With the current implemen