Re: [ovs-dev] [PATCH ovn] chassis.c: Fix the possible NULL pointer deference in chassis_cleanup().

2020-09-11 Thread Han Zhou
On Fri, Sep 11, 2020 at 3:24 PM Ilya Maximets wrote: > > On 9/11/20 11:59 PM, Han Zhou wrote: > > If chassis_rec is NULL but chassis_private_rec is not, chassis_rec->name > > is a NULL pointer deference. This patch fixes it. > > > > Fixes: 4adc10f581 ("Avoid nb_cfg update notification flooding")

[ovs-dev] [PATCH ovn v2] chassis.c: Fix the possible NULL pointer deference in chassis_cleanup().

2020-09-11 Thread Han Zhou
If chassis_rec is NULL but chassis_private_rec is not, chassis_rec->name is a NULL pointer deference. This patch fixes it. Fixes: 4adc10f581 ("Avoid nb_cfg update notification flooding") Signed-off-by: Han Zhou --- v1 -> v2: Address the comment from Ilya for coding style. controller/chassis.c

[ovs-dev] Amazonセキュリティ警告: サインインが検出されました

2020-09-11 Thread Amazon.co.jp via dev
あなたのアカウントは停止されました 新しいデバイスからアカウントサービスへのサインインが検出されました。 誰かがあなたのAmazonアカウントで他のデバイスから購入しようとしました。Amazonの保護におけるセキュリティと整合性の問題により、セキュリティ上の理由からアカウントがロックされます。 アカウントを引き続き使用するには、24時間前に情報を更新することをお勧めします。それ以外の場合、あなたのアカウントは永久ロック。 確認用アカウント © 2020 Amazon.com, Inc. or its affiliates. All rights reserved.

[ovs-dev] Plantillas, diseños y tipografías.

2020-09-11 Thread Powerpoint y Canva para presentaciones.
Buenos día Quise aprovechar la oportunidad de hacerte una invitación para tomar nuestro curso. En este taller conocerás los detalles de las herramientas como Powerpoint y Canva para preparar presentaciones de impacto. Nombre: Powerpoint y Canva para presentaciones profesionales. Fecha:03 de

Re: [ovs-dev] [PATCH ovn] chassis.c: Fix the possible NULL pointer deference in chassis_cleanup().

2020-09-11 Thread Ilya Maximets
On 9/11/20 11:59 PM, Han Zhou wrote: > If chassis_rec is NULL but chassis_private_rec is not, chassis_rec->name > is a NULL pointer deference. This patch fixes it. > > Fixes: 4adc10f581 ("Avoid nb_cfg update notification flooding") > Signed-off-by: Han Zhou > --- > controller/chassis.c | 3 ++-

[ovs-dev] [PATCH ovn] chassis.c: Fix the possible NULL pointer deference in chassis_cleanup().

2020-09-11 Thread Han Zhou
If chassis_rec is NULL but chassis_private_rec is not, chassis_rec->name is a NULL pointer deference. This patch fixes it. Fixes: 4adc10f581 ("Avoid nb_cfg update notification flooding") Signed-off-by: Han Zhou --- controller/chassis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)

Re: [ovs-dev] [PATCH ovn v2 0/9] Incremental processing for flow installation.

2020-09-11 Thread Dumitru Ceara
On 9/11/20 8:39 PM, Han Zhou wrote: > > > On Fri, Sep 11, 2020 at 6:17 AM Dumitru Ceara > wrote: >> >> On 9/9/20 11:13 PM, Han Zhou wrote: >> > On Wed, Sep 9, 2020 at 6:39 AM Mark Michelson > wrote: >> >> >> >> Thanks for addressing my

Re: [ovs-dev] [PATCH ovn v2 0/9] Incremental processing for flow installation.

2020-09-11 Thread Han Zhou
On Fri, Sep 11, 2020 at 6:17 AM Dumitru Ceara wrote: > > On 9/9/20 11:13 PM, Han Zhou wrote: > > On Wed, Sep 9, 2020 at 6:39 AM Mark Michelson wrote: > >> > >> Thanks for addressing my concerns on patch 9. > >> > >> Acked-by: Mark Michelson > >> > >> Warning: I'm also ACKing Numan's patch

Re: [ovs-dev] [PATCH ovn v5 02/14] ovn-northd: move pre-acl and acl processing to a separate function

2020-09-11 Thread Anton Ivanov
On 11/09/2020 18:02, 0-day Robot wrote: Bleep bloop. Greetings Anton Ivanov, 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. git-am: error: sha1 information is lacking or useless

Re: [ovs-dev] [PATCH ovn v5 02/14] ovn-northd: move pre-acl and acl processing to a separate function

2020-09-11 Thread 0-day Robot
Bleep bloop. Greetings Anton Ivanov, 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. git-am: error: sha1 information is lacking or useless (northd/ovn-northd.c). error: could not build fake

[ovs-dev] [PATCH ovn v5 13/14] ovn-northd: move destination lookup and unicast to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 289 +++- 1 file changed, 152 insertions(+), 137 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 21e415dcc..b043f9e98 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 14/14] ovn-northd: convert output port security to iterators

2020-09-11 Thread anton . ivanov
From: Anton Ivanov 1. Convert output port security to iterators 2. Switch to reusing the match and action scrathcpads from build_lswitch_flows Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 92 +++-- 1 file changed, 48 insertions(+), 44

[ovs-dev] [PATCH ovn v5 12/14] ovn-northd: move mcast flow learned from IGMP/MLD to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 144 1 file changed, 79 insertions(+), 65 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index b64e748c5..21e415dcc 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 11/14] ovn-northd: move destination lookup b/mcast handling to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 169 1 file changed, 91 insertions(+), 78 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index c9897d691..b64e748c5 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 10/14] ovn-northd: move external port arp handling to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 39 +++ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 921a4cf73..c9897d691 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 09/14] ovn-northd: move per datapath dhcp response to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 42 ++ 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index e80d06849..921a4cf73 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 05/14] ovn-northd: replace build_lswitch_input_port_sec with iterators

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Replace build_lswitch_input_port_sec with two separate op and od iterators. Reuse the match and actions allocated in build_lswitch_flows to avoid extra allocs and frees. Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 58 ++---

[ovs-dev] [PATCH ovn v5 08/14] ovn-northd: move lswitch dns lookup/response into a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 51 ++--- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 952769e8e..e80d06849 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 06/14] ovn-northd: move arp/nd responder to functions

2020-09-11 Thread anton . ivanov
From: Anton Ivanov 1. move arp/nd responder for unkown ips to a function 2. move arp/nd responder for known ips to a function 3. move default to a function Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 489 1 file changed, 269

[ovs-dev] [PATCH ovn v5 07/14] ovn-northd: move out DHCP response into a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 101 1 file changed, 55 insertions(+), 46 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 55d777ce6..952769e8e 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 02/14] ovn-northd: move pre-acl and acl processing to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 39 +-- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 59aedc000..3bf7087f0 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] build_lswitch_flows patch series

2020-09-11 Thread anton . ivanov
I am sending the lswitch patch series for ovn-northd. They are organized in a manner which is similar to the lrouter patch series I sent out earlier. The idea is once again to prepare this portion of ovn-northd for parallel processing as well as improve the code maintainability. Brgds, A.

[ovs-dev] [PATCH ovn v5 04/14] ovn-northd: move admission control to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 43 +++ 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 08eea008e..bfce99e0a 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] Disposiciones legales y reglamentarias

2020-09-11 Thread Imss e Infonavit 2020
Webinar en Vivo: Taller práctico de IMSS e INFONAVIT 2020. Curso en línea - Webinar Interactivo – Jueves 24 de Septiembre- Horario de 10:00 a 17:00 Hrs. Desarrollaremos de una forma dinámica y fácil los aspectos generales aplicables para el correcto cumplimiento de las obligaciones patronales

[ovs-dev] [PATCH ovn v5 03/14] ovn-northd: move logical flows for forwardig groups to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 19 ++- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 3bf7087f0..08eea008e 100644 --- a/northd/ovn-northd.c +++ b/northd/ovn-northd.c @@

Re: [ovs-dev] [PATCH ovn] ovn-controller: Handle changes in requested-tnl-key

2020-09-11 Thread 0-day Robot
Bleep bloop. Greetings Mark Gray, 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. git-am: error: patch fragment without header at line 6: @@ -1378,6 +1378,18 @@

Re: [ovs-dev] [PATCH ovn] ovn-controller: Handle changes in requested-tnl-key

2020-09-11 Thread Mark Gray
On 11/09/2020 16:26, Mark Gray wrote: > runtime_data_sb_datapath_binding_handler() only handles deletion of rows Please ignore as this will not apply. I will resend on Monday when I have resolved an e-mail issue that I am having. ___ dev mailing list

Re: [ovs-dev] [PATCH 2/2] datapath: Make metadata_dst tunnel work in IP_TUNNEL_INFO_BRIDGE mode

2020-09-11 Thread Gregory Rose
On 10/14/2019 9:51 PM, wenxu wrote: On 10/15/2019 5:14 AM, Gregory Rose wrote: On 10/8/2019 4:51 PM, Greg Rose wrote: From: wenxu Upstream commit: commit 18b6f717483a835fb98de9f0df6c724df9324e78 Author: wenxu Date:   Thu Mar 28 12:43:23 2019 +0800 openvswitch:

[ovs-dev] [PATCH ovn] ovn-controller: Handle changes in requested-tnl-key

2020-09-11 Thread Mark Gray
runtime_data_sb_datapath_binding_handler() only handles deletion of rows in the Datapath_Binding table in OVN-SB. The user can update the requested-tnl-key by the following command: ovn-nbctl set logical_switch sw0 other_config:requested-tnl-key= This command modifies the tunnel_key column. This

Re: [ovs-dev] [PATCH ovn v2] northd: Add lflows to send all pkts to conntrack if LB is configured on a lswitch.

2020-09-11 Thread Numan Siddique
On Fri, Sep 11, 2020 at 8:14 PM Mark Michelson wrote: > Acked-by: Mark Michelson > Thanks Dumitru and Mark. I applied this patch to master. Numan > > Thanks Numan! > > On 9/11/20 5:10 AM, num...@ovn.org wrote: > > From: Numan Siddique > > > > Prior to this patch, if a load balancer is

Re: [ovs-dev] [PATCH dpdk-latest v4] build: Add support for DPDK meson build.

2020-09-11 Thread Pai G, Sunil
> -Original Message- > From: Ilya Maximets > Sent: Friday, September 11, 2020 8:14 PM > To: Stokes, Ian ; Pai G, Sunil ; > d...@openvswitch.org > Cc: i.maxim...@ovn.org; david.march...@redhat.com; Richardson, Bruce > ; christian.ehrha...@canonical.com; > i.maxim...@ovn.org > Subject: Re:

Re: [ovs-dev] [PATCH] ofproto: Preserve ofport number for failed ofport across restarts

2020-09-11 Thread Ilya Maximets
On 9/11/20 11:13 AM, Vishal Deep Ajmera wrote: >> Hi, Vishal. I'm looking through old patches after the patchwork cleanup and >> it seems that this one in kind of undecided state. >> Does this patch still valid? >> >> Anyway, for the problem you described here: Maybe it's possible to just use >>

Re: [ovs-dev] [PATCH dpdk-latest v1] travis: Switch DPDK branch master to main.

2020-09-11 Thread Stokes, Ian
> The default branch name in DPDK is changed from master to main. > This patch reflects the same on travis builds for dpdk-latest branch. > > Tested-at: https://travis-ci.org/github/Sunil-Pai-G/ovs-copy/builds/723223426 > Signed-off-by: Sunil Pai G Thanks Sunil, applied. Regards Ian > --- >

Re: [ovs-dev] [PATCH dpdk-latest v2] sparse: Fix build with DPDK 20.08.

2020-09-11 Thread Stokes, Ian
> Introduction of C11 atomic instructions in rte_mbuf.h causes the build to fail > with Sparse reporting following errors. > > error: undefined identifier '__atomic_add_fetch' > error: undefined identifier '__atomic_store_n' > > This patch adds the Sparse header for rte_mbuf.h. > > Tested-at:

Re: [ovs-dev] [PATCH v3 ovn 1/2] ovn-northd: Reduce number of flows generated for stateful ACLs.

2020-09-11 Thread Numan Siddique
On Fri, Sep 11, 2020 at 6:11 PM Mark Michelson wrote: > > Acked-by: Mark Michelson Thanks Dumitru and Mark and Han for the suggestion. The patch LGTM. I applied this patch to master. There was one test case failing - 148: ovn -- lflow cache for conjunctions. This test case was added by me

Re: [ovs-dev] [PATCH v3 ovn 1/2] ovn-northd: Reduce number of flows generated for stateful ACLs.

2020-09-11 Thread Mark Michelson
Acked-by: Mark Michelson There's one documentation error down below that can be fixed when this is merged. Since the referenced ECMP test case has been fixed already, this also won't cause any test failures. On 9/2/20 11:05 AM, Dumitru Ceara wrote: Introduce two new stages in the logical

[ovs-dev] [PATCH] dpctl: add add-flows command to dpctl

2020-09-11 Thread Eelco Chaudron
When you would like to add, modify, or delete a lot of flows in the datapath, for example when you want to measure performance, adding one flow at the time won't scale. This as it takes a decent amount of time to set up the datapath connection. This new command is in-line with the same command

Re: [ovs-dev] [PATCH ovn v2] ovn-ctl: Handle cluster db upgrades for run_(nb/sb)_ovsdb

2020-09-11 Thread Numan Siddique
On Thu, Sep 10, 2020 at 11:34 PM Mark Michelson wrote: > > Acked-by: Mark Michelson Thanks Mark. I applied this patch to master. Numan > > On 9/9/20 3:19 AM, num...@ovn.org wrote: > > From: Numan Siddique > > > > when ovn-ctl run_(nb_sb)_ovsdb is called, the ovsdb-server is started > >

Re: [ovs-dev] [PATCH ovn branch-20.03] ovn-northd: Skip conntrack for MLD packets.

2020-09-11 Thread Numan Siddique
On Fri, Sep 11, 2020 at 4:09 PM Dumitru Ceara wrote: > > We currently skip conntrack for IPv6 Neighbor Discovery packets because > conntrack marks all ND packets as invalid [0]. > > The same thing should be done for MLD packets. Otherwise, as soon as an > allow-related ACL or load balancer is

[ovs-dev] LAST QUARTER PAYMENT OF THE YEAR 2020

2020-09-11 Thread Zenith Bank International
Zenith International Bank Plc ATM Visa/Swift Card Unit, Tel: +234-8184756758 Attn: Fund Beneficiary, The President of the Federal Republic of Nigeria through the Zenith International Bank Nigeria PLC has released your Contract/Inheritance/Compensation Fund of Five Million United States Dollars

[ovs-dev] [PATCH ovn branch-20.03] ovn-northd: Skip conntrack for MLD packets.

2020-09-11 Thread Dumitru Ceara
We currently skip conntrack for IPv6 Neighbor Discovery packets because conntrack marks all ND packets as invalid [0]. The same thing should be done for MLD packets. Otherwise, as soon as an allow-related ACL or load balancer is added, MLD packets will go to conntrack and get dropped because they

Re: [ovs-dev] [PATCH ovn] ovn-northd: Skip conntrack for MLD packets.

2020-09-11 Thread Numan Siddique
On Fri, Sep 11, 2020 at 3:24 PM Dumitru Ceara wrote: > > On 9/11/20 11:46 AM, Numan Siddique wrote: > > On Fri, Sep 11, 2020 at 2:25 PM Dumitru Ceara wrote: > >> > >> We currently skip conntrack for IPv6 Neighbor Discovery packets because > >> conntrack marks all ND packets as invalid [0]. > >>

Re: [ovs-dev] [PATCH ovn v2] northd: Add lflows to send all pkts to conntrack if LB is configured on a lswitch.

2020-09-11 Thread 0-day Robot
Bleep bloop. Greetings Numan Siddique, 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. git-am: error: Failed to merge in the changes. hint: Use 'git am --show-current-patch' to see the failed

[ovs-dev] [PATCH ovn v5 11/16] ovn-northd: move multicast lookup to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 132 1 file changed, 73 insertions(+), 59 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 7f5a59029..3fc88ee7c 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 15/16] ovn-northd: move arp request to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 141 1 file changed, 77 insertions(+), 64 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 71d90159d..4dfb9badd 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 16/16] ovn-northd: move delivery to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 101 +--- 1 file changed, 57 insertions(+), 44 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 4dfb9badd..2b2180ffb 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 12/16] ovn-northd: move ingress policy to a separate function.

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 58 +++-- 1 file changed, 35 insertions(+), 23 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 3fc88ee7c..a3dfefb70 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 13/16] ovn-northd: Move arp resolution to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 757 +++- 1 file changed, 397 insertions(+), 360 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index a3dfefb70..7f4cfc9c2 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 14/16] ovn-northd: move gateway redirect to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 314 1 file changed, 171 insertions(+), 143 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 7f4cfc9c2..71d90159d 100644 --- a/northd/ovn-northd.c +++

Re: [ovs-dev] [PATCH ovn] ovn-northd: Skip conntrack for MLD packets.

2020-09-11 Thread Dumitru Ceara
On 9/11/20 11:46 AM, Numan Siddique wrote: > On Fri, Sep 11, 2020 at 2:25 PM Dumitru Ceara wrote: >> >> We currently skip conntrack for IPv6 Neighbor Discovery packets because >> conntrack marks all ND packets as invalid [0]. >> >> The same thing should be done for MLD packets. Otherwise, as soon

Re: [ovs-dev] [PATCH 1/3] dpif-netlink: Generate ufids for installing TC flowers

2020-09-11 Thread Eelco Chaudron
Hi Tonghao, at al. This patch is breaking basic flow adding/deletion with ovs-dpctl. I did not look at the root cause yet, maybe you can take a peek. This is present since 13.0, so the potential fix needs backporting. Here is how to replicate: ip link add name vport0 type veth peer name

Re: [ovs-dev] [PATCH ovn] ovn-northd: Skip conntrack for MLD packets.

2020-09-11 Thread Numan Siddique
On Fri, Sep 11, 2020 at 2:25 PM Dumitru Ceara wrote: > > We currently skip conntrack for IPv6 Neighbor Discovery packets because > conntrack marks all ND packets as invalid [0]. > > The same thing should be done for MLD packets. Otherwise, as soon as an > allow-related ACL or load balancer is

[ovs-dev] [PATCH ovn v5 05/16] ovn-northd: Move DHCP Reply handling to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 44 ++-- 1 file changed, 26 insertions(+), 18 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 6a149fd0f..4286ec3e9 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 01/16] ovn-northd: Move out Table 0 (ingress) operations to functions

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 135 +++- 1 file changed, 82 insertions(+), 53 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index b95d6cd8a..14e4a6939 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 04/16] ovn-northd: Move logical router IPv4 ingress as a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 801 ++-- 1 file changed, 408 insertions(+), 393 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 22aa495af..6a149fd0f 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 03/16] ovn-northd: Move out ip input to a function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 204 +++- 1 file changed, 108 insertions(+), 96 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 611fb2d3e..22aa495af 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 07/16] ovn-northd: Move NAT, defrag and lb out to a separate function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 1328 ++- 1 file changed, 673 insertions(+), 655 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 3c6e909d7..850e1d3bd 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 10/16] ovn-northd: move lrouter static routes to flows to a new function

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 101 1 file changed, 56 insertions(+), 45 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 100562fc0..7f5a59029 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn v5 02/16] ovn-northd: Move out Table 1 operations into functions

2020-09-11 Thread anton . ivanov
From: Anton Ivanov Signed-off-by: Anton Ivanov --- northd/ovn-northd.c | 321 1 file changed, 173 insertions(+), 148 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 14e4a6939..611fb2d3e 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] Refactoring northd processing into separate functions

2020-09-11 Thread anton . ivanov
This patchset refactors processing of logical flows for the lrouter part in ovn-northd into a set of functions. This improves the maintainability of the code and is intended as a step towards the long term goal is to do this in parallel in multiple threads. Even if processing never moves to that

Re: [ovs-dev] [PATCH ovn v2] northd: Add lflows to send all pkts to conntrack if LB is configured on a lswitch.

2020-09-11 Thread Dumitru Ceara
On 9/11/20 11:10 AM, num...@ovn.org wrote: > From: Numan Siddique > > Prior to this patch, if a load balancer is configured on a logical switch but > with no > ACLs with allow-related configured, then in the ingress pipeline only the > packets > with ip.dst = VIP will be sent to conntrack

[ovs-dev] Thanks in anticipation....

2020-09-11 Thread Department Of Treasury
UNITED STATES DEPARTMENT OF THE TREASURY. TREASURY BUILDING 1500 PENNSYLVANIA AVENUE, NW WASHINGTON, D.C., U.S Attention: Sir/Madam, After our board meeting United State Government including European Parliament, Asian and Arab League they already gave us instruction to release your

[ovs-dev] [PATCH ovn] ovn-northd: Skip conntrack for MLD packets.

2020-09-11 Thread Dumitru Ceara
We currently skip conntrack for IPv6 Neighbor Discovery packets because conntrack marks all ND packets as invalid [0]. The same thing should be done for MLD packets. Otherwise, as soon as an allow-related ACL or load balancer is added, MLD packets will go to conntrack and get dropped because they

[ovs-dev] Thanks in anticipation.//

2020-09-11 Thread Department Of Treasury
UNITED STATES DEPARTMENT OF THE TREASURY. TREASURY BUILDING 1500 PENNSYLVANIA AVENUE, NW WASHINGTON, D.C., U.S Attention: Sir/Madam, After our board meeting United State Government including European Parliament, Asian and Arab League they already gave us instruction to release your

Re: [ovs-dev] [PATCH ovn] ovn-ic.at: Make AZ register test more reliable.

2020-09-11 Thread Numan Siddique
On Fri, Sep 11, 2020 at 1:26 AM Han Zhou wrote: > > On Thu, Sep 10, 2020 at 11:57 AM Ilya Maximets wrote: > > > > It might take some time for availability zone to become > > visible in the output of 'show' command. > > > > This fixes periodic failures of testsuite jobs on Travis. > > > > Fixes: