Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Han Zhou
On Mon, Sep 7, 2020 at 3:11 AM Dumitru Ceara wrote: > > ovn-controller always stores the last configured system-id/chassis-id in > memory regardless if the connection to the SB is up or down. This is OK > as long as the change can be committed successfully when the SB DB > connection comes back up

Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Numan Siddique
On Tue, Sep 8, 2020 at 12:58 PM Han Zhou wrote: > On Mon, Sep 7, 2020 at 3:11 AM Dumitru Ceara wrote: > > > > ovn-controller always stores the last configured system-id/chassis-id in > > memory regardless if the connection to the SB is up or down. This is OK > > as long as the change can be comm

Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Numan Siddique
On Tue, Sep 8, 2020 at 1:16 PM Numan Siddique wrote: > > > On Tue, Sep 8, 2020 at 12:58 PM Han Zhou wrote: > >> On Mon, Sep 7, 2020 at 3:11 AM Dumitru Ceara wrote: >> > >> > ovn-controller always stores the last configured system-id/chassis-id in >> > memory regardless if the connection to the

Re: [ovs-dev] [PATCH ovn] ovn-northd: Fix chassis/chassis_private RBAC.

2020-09-08 Thread Numan Siddique
On Mon, Sep 7, 2020 at 10:29 PM Dumitru Ceara wrote: > Steps to reproduce the issue: > > $ make sandbox > $ ovs-vsctl set open . external_ids:system-id=new-chassis > > Fixes: 94a32fca2d2b ("chassis: Fix the way encaps are updated for a > chassis record.") > Fixes: 5344f24ecb1a ("ovn-controller: R

Re: [ovs-dev] [PATCH ovn] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Numan Siddique
On Mon, Sep 7, 2020 at 9:34 PM Dumitru Ceara wrote: > OVN was dropping IP packets destined to IPs owned by logical routers but > only if those IPs are not used for SNAT rules. However, if a packet > doesn't match an existing NAT session and its destination is still a > router owned IP, it can be

[ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Dumitru Ceara
OVN was dropping IP packets destined to IPs owned by logical routers but only if those IPs are not used for SNAT rules. However, if a packet doesn't match an existing NAT session and its destination is still a router owned IP, it can be safely dropped. Otherwise it will trigger an unnecessary packe

Re: [ovs-dev] [PATCH ovn] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Dumitru Ceara
On 9/8/20 10:28 AM, Numan Siddique wrote: > > > On Mon, Sep 7, 2020 at 9:34 PM Dumitru Ceara > wrote: > > OVN was dropping IP packets destined to IPs owned by logical routers but > only if those IPs are not used for SNAT rules. However, if a packet > doesn'

[ovs-dev] [PATCH] ofproto:ipv6 mld report error send to fports

2020-09-08 Thread dingxiaoxiong
when mld report come(same as mld done), will do funciton xlate_normal_mcast_send_rports, and because of no return, will do forwarding to group base ports logic,and if other_config:mcast-snooping-flood is set on a port, will do xlate_normal_mcast_send_fports. so mld report will be reveived when xlat

Re: [ovs-dev] [PATCH] ofproto:ipv6 mld report error send to fports

2020-09-08 Thread 0-day Robot
Bleep bloop. Greetings dingxiaoxiong, 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 dingxiaoxiong needs to sign off. WARNING: Unexpected sign-offs from developers

[ovs-dev] [PATCH] ofproto:ipv6 mld report error send to fports

2020-09-08 Thread dingxiaoxiong
when mld report come(same as mld done), will do funciton xlate_normal_mcast_send_rports, and because of no return, will do forwarding to group base ports logic,and if other_config:mcast-snooping-flood is set on a port, will do xlate_normal_mcast_send_fports. so mld report will be reveived when xlat

Re: [ovs-dev] [PATCH v6 1/2 ovn] External IP based NAT: Add Columns and CLI

2020-09-08 Thread Numan Siddique
On Tue, Sep 8, 2020 at 2:28 AM Ankur Sharma wrote: > From: Ankur Sharma > > This patch adds following columns to NAT table. > > a. allowed_ext_ips: >Represents Address Set of External IPs for which >a NAT rule is applicable. > > b. exempted_ext_ips: >Represents Address Set of Externa

Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Dumitru Ceara
On 9/8/20 9:47 AM, Numan Siddique wrote: > > > On Tue, Sep 8, 2020 at 1:16 PM Numan Siddique > wrote: > > > > On Tue, Sep 8, 2020 at 12:58 PM Han Zhou > wrote: > > On Mon, Sep 7, 2020 at 3:11 AM Dumitru Ceara

Re: [ovs-dev] [PATCH ovn] ovn-northd: Fix chassis/chassis_private RBAC.

2020-09-08 Thread Dumitru Ceara
On 9/8/20 9:53 AM, Numan Siddique wrote: > > > On Mon, Sep 7, 2020 at 10:29 PM Dumitru Ceara > wrote: > > Steps to reproduce the issue: > > $ make sandbox > $ ovs-vsctl set open . external_ids:system-id=new-chassis > > Fixes: 94a32fca2d2b ("chassis: F

Re: [ovs-dev] [PATCH] ofproto:ipv6 mld report error send to fports

2020-09-08 Thread 0-day Robot
Bleep bloop. Greetings dingxiaoxiong, 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 dingxiaoxiong needs to sign off. WARNING: Unexpected sign-offs from developers

Re: [ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Numan Siddique
On Tue, Sep 8, 2020 at 2:13 PM Dumitru Ceara wrote: > > OVN was dropping IP packets destined to IPs owned by logical routers but > only if those IPs are not used for SNAT rules. However, if a packet > doesn't match an existing NAT session and its destination is still a > router owned IP, it can be

Re: [ovs-dev] [PATCH v5 2/3] dpif-netlink: distribute polling to discreet handlers

2020-09-08 Thread Aaron Conole
Mark Gray writes: > On 04/09/2020 16:03, 0-day Robot wrote: >> 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. > > Thanks 0-day > >> >> >> check

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

2020-09-08 Thread Sunil Pai G
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: https://travis-ci.or

Re: [ovs-dev] [PATCH ovn RFC v4 01/24] Move out Table 0 (ingress) operations to functions

2020-09-08 Thread Ilya Maximets
On 9/8/20 8:51 AM, Anton Ivanov wrote: > > > On 07/09/2020 18:39, Ilya Maximets wrote: >> On 9/7/20 7:08 PM, Anton Ivanov wrote: >>> >>> >>> On 07/09/2020 12:51, Ilya Maximets wrote: On 9/4/20 8:22 PM, Anton Ivanov wrote: > > On 04/09/2020 15:00, Ilya Maximets wrote: >> On 9/2/20

Re: [ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Dumitru Ceara
On 9/8/20 12:58 PM, Numan Siddique wrote: > On Tue, Sep 8, 2020 at 2:13 PM Dumitru Ceara wrote: >> >> OVN was dropping IP packets destined to IPs owned by logical routers but >> only if those IPs are not used for SNAT rules. However, if a packet >> doesn't match an existing NAT session and its des

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

2020-09-08 Thread David Marchand
On Tue, Sep 8, 2020 at 1:12 PM Sunil Pai G wrote: > > 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 t

Re: [ovs-dev] [PATCH v3 ovn] Allow to run multiple controllers on the same machine

2020-09-08 Thread Numan Siddique
On Wed, Sep 2, 2020 at 6:54 AM Ihar Hrachyshka wrote: > > User stories: > 1) NFV: an admin wants to run two separate instances of OVN controller >using the same database but configuring ports on different bridges. >Some of these bridges may use DPDK while others may not. > > 2) Parallel OV

Re: [ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Numan Siddique
On Tue, Sep 8, 2020 at 4:54 PM Dumitru Ceara wrote: > > On 9/8/20 12:58 PM, Numan Siddique wrote: > > On Tue, Sep 8, 2020 at 2:13 PM Dumitru Ceara wrote: > >> > >> OVN was dropping IP packets destined to IPs owned by logical routers but > >> only if those IPs are not used for SNAT rules. However,

Re: [ovs-dev] [PATCH 1/2] Documentation, windows: Document how to generate the Windows installer

2020-09-08 Thread Ilya Maximets
On 9/8/20 4:04 AM, Alin Gabriel Serdean wrote: > This patch adds information on how to generate the Windows installer > which can be used to easily deploy the userspace binaries, kernel module > and create services on new environments. > > Signed-off-by: Alin Gabriel Serdean > --- > v2: Change li

Re: [ovs-dev] [PATCH ovn] ovn-northd: Optionally skip the check of lsp_is_up.

2020-09-08 Thread Numan Siddique
On Thu, Sep 3, 2020 at 7:44 AM Han Zhou wrote: > > The checking of lsp "up" status before adding ARP responder flows was > added to avoid confusion in cases when a network admin sees ARP response > for VM/containers that is not up on chassis yet. However, this check > introduces an extra round of

Re: [ovs-dev] [PATCH] appveyor: Bump outdated links and add artifacts

2020-09-08 Thread Ilya Maximets
On 8/24/20 6:11 PM, Alin Gabriel Serdean wrote: > Bump OpenSSL and pthreads links. > > Add release and debug configuration. > > Build and add Windows installer to generated artifacts. > > Co-authored-by: Yonggang Luo > Signed-off-by: Yonggang Luo > Signed-off-by: Alin Gabriel Serdean > --- T

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

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

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

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

Re: [ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Dumitru Ceara
On 9/8/20 2:06 PM, Numan Siddique wrote: > On Tue, Sep 8, 2020 at 4:54 PM Dumitru Ceara wrote: >> >> On 9/8/20 12:58 PM, Numan Siddique wrote: >>> On Tue, Sep 8, 2020 at 2:13 PM Dumitru Ceara wrote: OVN was dropping IP packets destined to IPs owned by logical routers but only if th

Re: [ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Numan Siddique
On Tue, Sep 8, 2020 at 6:48 PM Dumitru Ceara wrote: > > On 9/8/20 2:06 PM, Numan Siddique wrote: > > On Tue, Sep 8, 2020 at 4:54 PM Dumitru Ceara wrote: > >> > >> On 9/8/20 12:58 PM, Numan Siddique wrote: > >>> On Tue, Sep 8, 2020 at 2:13 PM Dumitru Ceara wrote: > > OVN was dropping IP

[ovs-dev] [PATCH v1 1/1] DPDK: Remove support for vhost-user zero-copy.

2020-09-08 Thread Ian Stokes
Support for vhost-user dequeue zero-copy was deprecated in OVS 2.14 with the aim of removing it for OVS 2.15. Support for zero-copy will also be removed from DPDK 20.11. As such remove support from OVS. Signed-off-by: Ian Stokes --- Documentation/topics/dpdk/vhost-user.rst | 72 -

Re: [ovs-dev] [PATCH v6 2/2] dpif-netlink: distribute polling to discreet handlers

2020-09-08 Thread Mark Gray
On 07/09/2020 23:31, Flavio Leitner wrote: > > Hi Mark, > > Thanks again for the patch. > > I think the id-pool patch could be merged to this one since we > usually merge the API change with its new user in the same patch. > > See my other comments inline > > Done. Ill remove my cover letter

Re: [ovs-dev] [PATCH ovn v2 9/9] ofctrl.c: Merge opposite changes of tracked flows before installing.

2020-09-08 Thread Mark Michelson
On 9/7/20 2:45 AM, Han Zhou wrote: This patch optimizes the previous patch that incrementally processes flow installation by merging the "add-after-delete" flow changes as much as possible to avoid unnecessary OpenFlow updates. Signed-off-by: Han Zhou --- controller/ofctrl.c | 74

[ovs-dev] [News] toute la France

2020-09-08 Thread Valentin SUP
  Reconversion professionnelle un nouveau métier pour une nouvelle vie Hypnose médicale, hypnose thérapeutique, cette nouvelle façon de soulager et rétablir l'harmonie des personnes en passant par l'inconscient, intéresse les professionnels des thérapies alterna

Re: [ovs-dev] [PATCH 23/23] Documentation: Update faq and NEWS for kernel 5.9

2020-09-08 Thread Gregory Rose
On 9/3/2020 2:11 PM, Ilya Maximets wrote: On 8/21/20 12:49 AM, Greg Rose wrote: Update the NEWS and faq now that we will support up to Linux kernel 5.9. Signed-off-by: Greg Rose --- Documentation/faq/releases.rst | 2 +- NEWS | 2 ++ 2 files changed, 3 insertion

Re: [ovs-dev] [PATCH RFC 2/2] release-process: LTS transition period and policy for unmaintained branches.

2020-09-08 Thread Kevin Traynor
On 03/09/2020 15:20, Ilya Maximets wrote: > On 8/28/20 3:55 PM, Flavio Leitner wrote: >> On Tue, Aug 25, 2020 at 02:24:11PM +0200, Ilya Maximets wrote: >>> While only 2 branches are formally maintained (LTS and latest release), >>> OVS team usually provides stable releases for other branches too, a

Re: [ovs-dev] [PATCH] Subject:[patch]netdev-native-tnl: strip padding bytes of inner L2.

2020-09-08 Thread Gregory Rose
On 9/7/2020 4:51 AM, 305753...@qq.com wrote: From: Weili Zhang <305753...@qq.com> We need strip the inner L2 padding bytes, before enapcasulate a packet. Why? What happens otherwise? - Greg Signed-off-by: Weili Zhang <305753...@qq.com> --- lib/netdev-native-tnl.c | 4 1 file ch

[ovs-dev] [PATCH v1 0/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
It is often necessary to fine-tune parameters of the unbound DNS resolver. The TTL of entries in the DNS servers cache is one example. Unbound's config may be conveniently defined in the form of a configuration file. This patch provides the means for specifying the location of a configuration file

[ovs-dev] [PATCH v1 0/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
When an unbound context is created, check whether OVS_UNBOUND_CONF has been set. If a valid config file is supplied then use it to configure the context. The procedure returns if the config file is invalid. If no config file is found then the default unbound config is used. Signed-off-by: Ted Elho

Re: [ovs-dev] [PATCH 2/2] documentation, windows: Fix line endings at 79 characters

2020-09-08 Thread Gregory Rose
On 9/7/2020 7:04 PM, Alin Gabriel Serdean wrote: Found by inspection. Signed-off-by: Alin Gabriel Serdean --- Documentation/topics/windows.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/topics/windows.rst b/Documentation/topics/windows.rst inde

[ovs-dev] [PATCH v1 1/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
When an unbound context is created, check whether OVS_UNBOUND_CONF has been set. If a valid config file is supplied then use it to configure the context. The procedure returns if the config file is invalid. If no config file is found then the default unbound config is used. Signed-off-by: Ted Elho

[ovs-dev] [PATCH v1 0/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
It is often necessary to fine-tune parameters of the unbound DNS resolver. The TTL of entries in the DNS servers cache is one example. Unbound's config may be conveniently defined in the form of a configuration file. This patch provides the means for specifying the location of a configuration file

[ovs-dev] [PATCH v7] dpif-netlink: distribute polling to discreet handlers

2020-09-08 Thread Mark Gray
From: Aaron Conole Currently, the channel handlers are polled globally. On some systems, this causes a thundering herd issue where multiple handler threads become active, only to do no work and immediately sleep. The approach here is to push the netlink socket channels to discreet handler threa

Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Han Zhou
On Tue, Sep 8, 2020 at 2:24 AM Dumitru Ceara wrote: > > On 9/8/20 9:47 AM, Numan Siddique wrote: > > > > > > On Tue, Sep 8, 2020 at 1:16 PM Numan Siddique > > wrote: > > > > > > > > On Tue, Sep 8, 2020 at 12:58 PM Han Zhou > > wrote: > > >

Re: [ovs-dev] [PATCH v1 1/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread 0-day Robot
Bleep bloop. Greetings Ted Elhourani, 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 is 80 characters long (recommended limit is 79) #27 FILE: Documentation/intro/in

Re: [ovs-dev] [PATCH ovn v2 9/9] ofctrl.c: Merge opposite changes of tracked flows before installing.

2020-09-08 Thread Han Zhou
On Tue, Sep 8, 2020 at 8:55 AM Mark Michelson wrote: > > On 9/7/20 2:45 AM, Han Zhou wrote: > > This patch optimizes the previous patch that incrementally processes > > flow installation by merging the "add-after-delete" flow changes as > > much as possible to avoid unnecessary OpenFlow updates. >

Re: [ovs-dev] [PATCH ovn] ovn-northd: Optionally skip the check of lsp_is_up.

2020-09-08 Thread Han Zhou
On Tue, Sep 8, 2020 at 5:29 AM Numan Siddique wrote: > > On Thu, Sep 3, 2020 at 7:44 AM Han Zhou wrote: > > > > The checking of lsp "up" status before adding ARP responder flows was > > added to avoid confusion in cases when a network admin sees ARP response > > for VM/containers that is not up o

Re: [ovs-dev] [PATCH ovn v2 9/9] ofctrl.c: Merge opposite changes of tracked flows before installing.

2020-09-08 Thread Mark Michelson
On 9/8/20 2:07 PM, Han Zhou wrote: On Tue, Sep 8, 2020 at 8:55 AM Mark Michelson > wrote: > > On 9/7/20 2:45 AM, Han Zhou wrote: > > This patch optimizes the previous patch that incrementally processes > > flow installation by merging the "add-after-delete" flow

Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Dumitru Ceara
On 9/8/20 7:43 PM, Han Zhou wrote: > > > On Tue, Sep 8, 2020 at 2:24 AM Dumitru Ceara > wrote: >> >> On 9/8/20 9:47 AM, Numan Siddique wrote: >> > >> > >> > On Tue, Sep 8, 2020 at 1:16 PM Numan Siddique >> >

Re: [ovs-dev] [PATCH ovn v2 9/9] ofctrl.c: Merge opposite changes of tracked flows before installing.

2020-09-08 Thread Han Zhou
On Tue, Sep 8, 2020 at 11:30 AM Mark Michelson wrote: > > On 9/8/20 2:07 PM, Han Zhou wrote: > > > > > > On Tue, Sep 8, 2020 at 8:55 AM Mark Michelson > > wrote: > > > > > > On 9/7/20 2:45 AM, Han Zhou wrote: > > > > This patch optimizes the previous patch that incr

Re: [ovs-dev] [PATCH ovn v2] ovn-northd: Drop IP packets destined to router owned IPs (after NAT).

2020-09-08 Thread Dumitru Ceara
On 9/8/20 3:42 PM, Numan Siddique wrote: > On Tue, Sep 8, 2020 at 6:48 PM Dumitru Ceara wrote: >> >> On 9/8/20 2:06 PM, Numan Siddique wrote: >>> On Tue, Sep 8, 2020 at 4:54 PM Dumitru Ceara wrote: On 9/8/20 12:58 PM, Numan Siddique wrote: > On Tue, Sep 8, 2020 at 2:13 PM Dumitru Ce

Re: [ovs-dev] [PATCH ovn branch-20.03] chassis: Fix the way encaps are updated for a chassis record.

2020-09-08 Thread Han Zhou
On Tue, Sep 8, 2020 at 11:33 AM Dumitru Ceara wrote: > > On 9/8/20 7:43 PM, Han Zhou wrote: > > > > > > On Tue, Sep 8, 2020 at 2:24 AM Dumitru Ceara > > wrote: > >> > >> On 9/8/20 9:47 AM, Numan Siddique wrote: > >> > > >> > > >> > On Tue, Sep 8, 2020 at 1:16 PM Numan Si

[ovs-dev] [PATCH v1] NEWS: Add external ip based NAT support

2020-09-08 Thread Ankur Sharma
Signed-off-by: Ankur Sharma --- NEWS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS b/NEWS index a1ce4e8..8e2869b 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,8 @@ Post-v20.06.0 called Chassis_Private now contains the nb_cfg column which is updated by incrementing the value i

Re: [ovs-dev] [PATCH v6 1/2 ovn] External IP based NAT: Add Columns and CLI

2020-09-08 Thread svc . mail . git
Hi Numan, Thanks a lot for review and applying the patch. Sure, just sent out the patch for 'NEWS '. Regards, Ankur From: Numan Siddique Sent: Tuesday, September 8, 2020 2:14 AM To: svc.mail.git Cc: ovs-dev Subject: Re: [ovs-dev] [PATCH v6 1/2 ovn] External IP

Re: [ovs-dev] [PATCH ovn 3/4] expr: Evaluate the condition expression in a separate step.

2020-09-08 Thread Mark Michelson
I know this is weird because I ACKed this exact patch once in the past, but I found a small issue. See below: On 9/2/20 2:46 PM, num...@ovn.org wrote: From: Numan Siddique This patch was committed earlier [1] and then reverted [2]. A new function is added - expr_evaluate_condition() which ev

[ovs-dev] [PATCH ovn] ovn-controller: Unix command debug/delay-nb-cfg-report.

2020-09-08 Thread Han Zhou
This command is added to avoid the flooding of nb_cfg updates from a large nubmer of hypervisors interfering with the original SB DB data distribution and handling, so that the e2e control plane latency can be measured more accurately during scale testing with the command ovn-nbctl --print-wait

Re: [ovs-dev] [PATCH ovn 4/4] ovn-controller: Support configuration option ovn-delay-nb-cfg-report.

2020-09-08 Thread Han Zhou
On Mon, Sep 7, 2020 at 6:22 PM Han Zhou wrote: > > > > On Mon, Sep 7, 2020 at 11:02 AM Numan Siddique wrote: > > > > > > > > On Sat, Sep 5, 2020 at 12:46 AM Numan Siddique wrote: > >> > >> > >> > >> On Sat, Sep 5, 2020, 12:04 AM Han Zhou wrote: > >>> > >>> On Fri, Sep 4, 2020 at 11:18 AM Numan

[ovs-dev] (no subject)

2020-09-08 Thread Charles Tremblay via dev
This is to officially inform you that you have been credited with an ATM CARD worth 4.8 Million Euros on the ongoing Global international ATM Card Award held on 21th of April 2020. Email address for this award was selected from databases of major shopping malls, electricity companies,railways st

Re: [ovs-dev] [PATCH ovn v2 2/2] Add 2020 and 2021 release calendars.

2020-09-08 Thread Mark Michelson
On 9/4/20 10:33 AM, Numan Siddique wrote: On Fri, Sep 4, 2020 at 7:25 PM Mark Michelson > wrote: In 2020, there were times where we started the release process later than expected. Part of the reason why was that the actual release dates for OVN were va

[ovs-dev] [Windows] Update documentation and build

2020-09-08 Thread Alin Gabriel Serdean
The following patchset contains small updates in the build process and corresponding documentation. Alin Serdean (8): windows: Remove unused variable windows: Add default value for VSTUDIO_CONFIG datapath_windows: Add datapath_windows target windows, documentation: Recommend latest VS and

[ovs-dev] [PATCH 8/8] appveyor: Bump outdated links and add artifacts

2020-09-08 Thread Alin Gabriel Serdean
Bump OpenSSL. Add release and debug configuration. Build and add Windows installer to generated artifacts. Build and zip prebuilt version. Co-authored-by: Yonggang Luo Signed-off-by: Yonggang Luo Co-authored-by: Jinjun Gao Signed-off-by: Jinjun Gao Signed-off-by: Alin Gabriel Serdean ---

[ovs-dev] [PATCH 1/8] windows: Remove unused variable

2020-09-08 Thread Alin Gabriel Serdean
Found by inspection. Signed-off-by: Alin Gabriel Serdean --- windows/automake.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/windows/automake.mk b/windows/automake.mk index 80dca1467..49c8985fd 100644 --- a/windows/automake.mk +++ b/windows/automake.mk @@ -12,7 +12,6 @@ # License for the

[ovs-dev] [PATCH 5/8] windows, installer: Bundle latest runtime version

2020-09-08 Thread Alin Gabriel Serdean
Until now we were bundling MSVC120 x86 runtime. This patch changes it too the latest version and also add the 64 bit version of it. Signed-off-by: Alin Gabriel Serdean --- windows/automake.mk | 3 ++- windows/ovs-windows-installer/Product.wxs | 11 --- 2 files cha

[ovs-dev] [PATCH 7/8] windows,installer: Bundle Windows 10 driver

2020-09-08 Thread Alin Gabriel Serdean
This patch bundles the Windows 10 driver family in the installer and also adds detection for the family. Signed-off-by: Alin Gabriel Serdean --- windows/automake.mk | 5 - windows/ovs-windows-installer/Driver/.gitignore | 1 + .../ovs-windows-installer

[ovs-dev] [PATCH 6/8] windows: Update build with latest pthread project

2020-09-08 Thread Alin Gabriel Serdean
pthreads-win32 has moved too PThreads4W. This patch updates the build steps, CI (appveyor) and documentation. Signed-off-by: Alin Gabriel Serdean --- Documentation/intro/install/windows.rst | 10 +- appveyor.yml| 18 +++--- m4/openvswitch.m4

[ovs-dev] [PATCH 2/8] windows: Add default value for VSTUDIO_CONFIG

2020-09-08 Thread Alin Gabriel Serdean
VSTUDIO_CONFIG is used when generating the windows installer. If the parameter passed to configure `--with-vstudiotarget` is not specified to configure we default it to `Default` Signed-off-by: Alin Gabriel Serdean --- m4/openvswitch.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) dif

[ovs-dev] [PATCH 4/8] windows, documentation: Recommend latest VS and WDK version

2020-09-08 Thread Alin Gabriel Serdean
Found by inspection. Signed-off-by: Alin Gabriel Serdean --- Documentation/intro/install/windows.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/intro/install/windows.rst b/Documentation/intro/install/windows.rst index 394572f00..4c7724b57 100644 --- a/Documentation/int

[ovs-dev] [PATCH 3/8] datapath_windows: Add datapath_windows target

2020-09-08 Thread Alin Gabriel Serdean
It is useful to build the latest supported version of the driver using the `make` command. Signed-off-by: Alin Gabriel Serdean --- datapath-windows/automake.mk | 4 1 file changed, 4 insertions(+) diff --git a/datapath-windows/automake.mk b/datapath-windows/automake.mk index b8cf5dd95..60b

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

2020-09-08 Thread Mark Michelson
This needs a rebase because commit 413cf9864024c4ef253ea177435161af198d5784 changed the way that the ovsdb server is started. On 9/3/20 9:04 AM, num...@ovn.org wrote: From: Numan Siddique when ovn-ctl run_(nb_sb)_ovsdb is called, the ovsdb-server is started without passing --detach and --mo

Re: [ovs-dev] [PATCH 2/8] windows: Add default value for VSTUDIO_CONFIG

2020-09-08 Thread 0-day Robot
Bleep bloop. Greetings Alin Gabriel Serdean, 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. build: -e 's,[@]sysconfdir[@],/usr/local/etc,g' \ -e 's,[@]bindir[@],/usr/local/bin,g' \

[ovs-dev] [PATCH ovn v2] ovn-northd: Optionally skip the check of lsp_is_up.

2020-09-08 Thread Han Zhou
The checking of lsp "up" status before adding ARP responder flows was added to avoid confusion in cases when a network admin sees ARP response for VM/containers that is not up on chassis yet. However, this check introduces an extra round of flow change in SB and triggers computes on hypervisors whi

Re: [ovs-dev] [PATCH ovn] ovn-northd: Optionally skip the check of lsp_is_up.

2020-09-08 Thread Han Zhou
On Tue, Sep 8, 2020 at 11:27 AM Han Zhou wrote: > > > > On Tue, Sep 8, 2020 at 5:29 AM Numan Siddique wrote: > > > > On Thu, Sep 3, 2020 at 7:44 AM Han Zhou wrote: > > > > > > The checking of lsp "up" status before adding ARP responder flows was > > > added to avoid confusion in cases when a net

[ovs-dev] [PATCH v1 0/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
It is often necessary to fine-tune parameters of the unbound DNS resolver. The TTL of entries in the DNS servers cache is one example. Unbound's config may be conveniently defined in the form of a configuration file. This patch provides the means for specifying the location of a configuration file

[ovs-dev] [PATCH v1 1/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
When an unbound context is created, check whether OVS_UNBOUND_CONF has been set. If a valid config file is supplied then use it to configure the context. The procedure returns if the config file is invalid. If no config file is found then the default unbound config is used. Signed-off-by: Ted Elho

Re: [ovs-dev] [PATCH v1 1/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread 0-day Robot
Bleep bloop. Greetings Ted Elhourani, 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 failed: lib/dns-resolve.c:82 error: lib/dns-resolve.c: patch does not apply error: Di

[ovs-dev] Taller práctico de IMSS e INFONAVIT 2020

2020-09-08 Thread Disposiciones legales y reglamentarias
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] Dear God's Chosen,

2020-09-08 Thread Mrs. Johanna maaly bob via dev
Good Day Dearest, I am Mrs. johanna maaly bob from Australia. It is understandable that you may be a bit apprehensive because you do not know me; I found your email address from a Human resources data base and decided to contact you. I would love to employ you into my charity work; I am ready

[ovs-dev] Low-Cost Loans for SMEs & Investment Funding.

2020-09-08 Thread Nicholas Toms
Dear sir/ma My name is Nicholas Toms, an investment portfolio manager with ACLL . We offer the right loan Investment funding with low interest to finance your business or project ranging from US$1M to US$2BIllion. Kindly contact me for more details as I am open to questions. Sincerely, Ni

Re: [ovs-dev] [PATCH v1 1/1] DPDK: Remove support for vhost-user zero-copy.

2020-09-08 Thread Xu, Chenjie
Hi all, I'm wondering why vhost-user dequeue zero-copy is removed. Could you please help me understand this question or let me know where I can find the discussions about this question? Best Regards, Xu, Chenjie -Original Message- From: dev On Behalf Of Ian Stokes Sent: Tuesday, Septem

[ovs-dev] [PATCH v1 1/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
When an unbound context is created, check whether OVS_UNBOUND_CONF has been set. If a valid config file is supplied then use it to configure the context. The procedure returns if the config file is invalid. If no config file is found then the default unbound config is used. Signed-off-by: Ted Elho

[ovs-dev] [PATCH v1 0/1] dns-resolve: Allow unbound's config file to be set through an env var.

2020-09-08 Thread Ted Elhourani
It is often necessary to fine-tune parameters of the unbound DNS resolver. The TTL of entries in the DNS servers cache is one example. Unbound's config may be conveniently defined in the form of a configuration file. This patch provides the means for specifying the location of a configuration file

[ovs-dev] [PATCH v2] userspace: fix bad UDP performance issue of veth

2020-09-08 Thread yang_y_yi
From: Yi Yang iperf3 UDP performance of veth to veth case is very very bad because of too many packet loss, the root cause is rmem_default and wmem_default are just 212992, but iperf3 UDP test used 8K UDP size which resulted in many UDP fragment in case that MTU size is 1500, one 8K UDP send woul