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

2020-10-23 Thread Nicholas Toms
Dear 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, Nicholas

[ovs-dev] [PATCH] packets: Un-inline functions needed by DDlog.

2020-10-23 Thread Ben Pfaff
From: Leonid Ryzhyk DDlog uses these functions from Rust, but Rust can't use inline functions (since it doesn't compile C headers but only links against a C-compatible ABI). Thus, move the implementations of these functions to a .c file. I don't think any of these functions is likely to be an

[ovs-dev] [PATCH ovn] Remove support for obsolete redirect-chassis way to configure gateways.

2020-10-23 Thread Ben Pfaff
OVN has three ways to configure distributed router ports: redirect-chassis, Gateway_Chassis, and HA_Chassis_Group. They all end up doing the same thing, so it's a lot of redundancy that exists only for historical reasons. This commit removes the oldest and least general method, redirect-chassis,

Re: [ovs-dev] [PATCH ovn 1/5] Makefile: Remove duplicated -I compiler flags.

2020-10-23 Thread Ben Pfaff
On Sat, Oct 24, 2020 at 12:54:46AM +0530, Numan Siddique wrote: > On Fri, Oct 23, 2020, 2:54 AM Ben Pfaff wrote: > > > Some -I flags were duplicated under a WIN32 ifdef. This seems to be > > a harmless mistake. Remove them. > > > > Signed-off-by: Ben Pfaff > > > > > For the entire series >

Re: [ovs-dev] [PATCH ovn 1/5] Add new table Load_Balancer in Southbound database.

2020-10-23 Thread Mark Michelson
On 10/23/20 4:21 PM, Numan Siddique wrote: On Sat, Oct 24, 2020, 1:29 AM Mark Michelson > wrote: On 10/21/20 3:25 AM, num...@ovn.org wrote: > From: Numan Siddique mailto:num...@ovn.org>> > > This patch adds a new table

Re: [ovs-dev] [PATCH ovn 4/5] actions: Add new actions chk_lb_hairpin, chk_lb_hairpin_reply and ct_snat_to_vip.

2020-10-23 Thread Mark Michelson
On 10/21/20 3:25 AM, num...@ovn.org wrote: From: Numan Siddique The action - chk_lb_hairpin checks if the packet destined to a load balancer VIP is to be hairpinned back to the same destination and if so, sets the destination register bit to 1. The action - chk_lb_hairpin_reply checks if the

Re: [ovs-dev] [PATCH ovn 3/5] controller: Add load balancer hairpin OF flows.

2020-10-23 Thread Mark Michelson
On 10/21/20 3:25 AM, num...@ovn.org wrote: From: Numan Siddique Presently to handle the load balancer hairpin traffic (the traffic destined to the load balancer VIP is dnatted to the backend which originated the traffic), ovn-northd adds a lot of logical flows to check this scenario. This

Re: [ovs-dev] [PATCH ovn 1/5] Add new table Load_Balancer in Southbound database.

2020-10-23 Thread Numan Siddique
On Sat, Oct 24, 2020, 1:29 AM Mark Michelson wrote: > On 10/21/20 3:25 AM, num...@ovn.org wrote: > > From: Numan Siddique > > > > This patch adds a new table 'Load_Balancer' in SB DB and syncs the > Load_Balancer table rows > > from NB DB to SB DB. An upcoming patch will make use of this table

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

2020-10-23 Thread Aaron Conole
Mark Gray writes: > 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

Re: [ovs-dev] [PATCH ovn 1/5] Add new table Load_Balancer in Southbound database.

2020-10-23 Thread Mark Michelson
On 10/21/20 3:25 AM, num...@ovn.org wrote: From: Numan Siddique This patch adds a new table 'Load_Balancer' in SB DB and syncs the Load_Balancer table rows from NB DB to SB DB. An upcoming patch will make use of this table for handling the load balancer hairpin traffic. Signed-off-by: Numan

Re: [ovs-dev] [PATCH ovn 1/5] Makefile: Remove duplicated -I compiler flags.

2020-10-23 Thread Numan Siddique
On Fri, Oct 23, 2020, 2:54 AM Ben Pfaff wrote: > Some -I flags were duplicated under a WIN32 ifdef. This seems to be > a harmless mistake. Remove them. > > Signed-off-by: Ben Pfaff > For the entire series Acked-by: Numan Siddique Thanks Numan --- > Makefile.am | 4 > 1 file

Re: [ovs-dev] [PATCH v2 1/2] Documentation: update IPsec tutorial for F32

2020-10-23 Thread Eric Garver
On Fri, Oct 23, 2020 at 02:39:21PM -0400, Mark Gray wrote: > F32 requires the "python3-openvswitch" package now. Also, the > iptables chain "IN_FedoraServer_allow" does not exist on Fedora 32. > > Signed-off-by: Mark Gray > --- > Documentation/tutorials/ipsec.rst | 30

Re: [ovs-dev] OVN-OVS build compatibility, take 2

2020-10-23 Thread Mark Michelson
On 10/23/20 8:42 AM, Brian Haley wrote: On 10/22/20 3:31 PM, Mark Michelson wrote: Hi, In today's OVN meeting [1], Numan brought up that he had proposed an OVN patch [2] that deals with a compilation error that occurred after updating to the latest OVS master. This sparked a discussion about

[ovs-dev] [PATCH v2 2/2] python: set ovs.dirs variables with build system values

2020-10-23 Thread Mark Gray
ovs/dirs.py should be auto-generated using the template ovs/dirs.py.template at build time. This will set the ovs.dirs python variables with a value specified by the environment or, if the environment variable is not set, from the build system. Signed-off-by: Mark Gray --- lib/automake.mk

[ovs-dev] [PATCH v2 1/2] Documentation: update IPsec tutorial for F32

2020-10-23 Thread Mark Gray
F32 requires the "python3-openvswitch" package now. Also, the iptables chain "IN_FedoraServer_allow" does not exist on Fedora 32. Signed-off-by: Mark Gray --- Documentation/tutorials/ipsec.rst | 30 -- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git

[ovs-dev] [PATCH v2 0/2] Some fixes for OVS IPsec on Fedora

2020-10-23 Thread Mark Gray
In the process of testing OVS IPsec on Fedora, I discovered some small issues to be resolved. I am following the tutorial at https://docs.openvswitch.org/en/latest/tutorials/ipsec/ Mark Gray (2): Documentation: update IPsec tutorial for F32 python: set ovs.dirs variables with build system

[ovs-dev] [PATCH] raft: Fix error leak on failure while saving snapshot.

2020-10-23 Thread Ilya Maximets
Error should be destroyed before return. Fixes: 1b1d2e6daa56 ("ovsdb: Introduce experimental support for clustered databases.") Signed-off-by: Ilya Maximets --- ovsdb/raft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovsdb/raft.c b/ovsdb/raft.c index

[ovs-dev] Warten auf Ihre dringende Antwort.

2020-10-23 Thread Rose Kouame via dev
Re: Von Rose Kouame, Ich heiße Rose Kouame. Ich bin ein 22 Jahre altes Mädchen, eine Waise. Meine Eltern sind gestorben, aber ich habe hier in einer Bank ungefähr 5.200.000,00 € (fünf Millionen zweihunderttausend Euro), die ich von meinem verstorbenen geliebten Vater Michel Kouame geerbt

[ovs-dev] Providing people with most trusted and effective medications is what we do at our pharmacy!

2020-10-23 Thread Express-Pharmacy
Very fast delivery. Friendly service! "Extremely helpful, quick customer response, I'm overall very impressed!" - By Alexander ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH 1/2] Documentation: update IPsec tutorial for F32

2020-10-23 Thread Kevin Traynor
On 23/10/2020 15:24, Mark Gray wrote: > On 21/10/2020 16:07, Stokes, Ian wrote: >>> F32 requires the "python3-openvswitch" package now. Also, the >>> iptables chain "IN_FedoraServer_allow" does not exist on Fedora 32. >>> >> >> Hi Mark, thanks for the patch, some minor comments below. >> >>>

[ovs-dev] Домен napatech.ru может быть удален из реестра

2020-10-23 Thread RU CENTER via dev
[IMAGE] Уважаемый администратор домена! Срок регистрации доменного имени napatech.ru истек. Вам следует оплатить услугу продления домена в течение одного рабочего дня с момента получения данного сообщения. Оплатить Сообщаем Вам, что если в указанный срок оплата не будет произведена,

[ovs-dev] Herramientas de validación de datos y fórmulas

2020-10-23 Thread Excel Intermedio combinado con gráficos
Me da mucho gusto saludarte. Es, para mí, un placer poder invitarte a nuestro Curso en Línea "Excel Intermedio", que se estará llevando a cabo los días 7, 14 y 21 de Noviembre con un horario de 10:00 a 14:00 hrs.(hora del centro de México), con un total de 12 hrs. Con este curso de Excel

[ovs-dev] Is the Open Flow switch able to calculate the gap of sequence number

2020-10-23 Thread Soliman Awad Alshra´a Abdullah TU Ilmenau
Dear All, First of all , I apologize if I send my inquiry to the wrong Email list I have read in some publication OpenFLow switch is able to keep track of the sequence number of each traffic flow to detect MAC spoofing attack. Upon reception of a frame, the algorithm calculates the gap G

Re: [ovs-dev] [PATCH 1/2] Documentation: update IPsec tutorial for F32

2020-10-23 Thread Mark Gray
On 21/10/2020 16:07, Stokes, Ian wrote: >> F32 requires the "python3-openvswitch" package now. Also, the >> iptables chain "IN_FedoraServer_allow" does not exist on Fedora 32. >> > > Hi Mark, thanks for the patch, some minor comments below. > >> Signed-off-by: Mark Gray >> --- >>

Re: [ovs-dev] [PATCH ovn v5 4/9] ovn-northd: Add commands to set/get parallelisation thresholds

2020-10-23 Thread Anton Ivanov
On 23/10/2020 12:58, Mark Michelson wrote: On 10/23/20 3:38 AM, Anton Ivanov wrote: On 22/10/2020 20:50, Mark Michelson wrote: This appears to be exactly the same as patch 4 from the previous series. I pointed out some problems with this patch in that series. Please at least address the bugs

Re: [ovs-dev] OVN-OVS build compatibility, take 2

2020-10-23 Thread Brian Haley
On 10/22/20 3:31 PM, Mark Michelson wrote: Hi, In today's OVN meeting [1], Numan brought up that he had proposed an OVN patch [2] that deals with a compilation error that occurred after updating to the latest OVS master. This sparked a discussion about the process behind OVN/OVS build

Re: [ovs-dev] [PATCH ovn v5 4/9] ovn-northd: Add commands to set/get parallelisation thresholds

2020-10-23 Thread Mark Michelson
On 10/23/20 3:38 AM, Anton Ivanov wrote: On 22/10/2020 20:50, Mark Michelson wrote: This appears to be exactly the same as patch 4 from the previous series. I pointed out some problems with this patch in that series. Please at least address the bugs I pointed out. Thanks. No comments from

Re: [ovs-dev] [PATCH ovn v5 4/9] ovn-northd: Add commands to set/get parallelisation thresholds

2020-10-23 Thread Mark Michelson
On 10/23/20 3:38 AM, Anton Ivanov wrote: On 22/10/2020 20:50, Mark Michelson wrote: This appears to be exactly the same as patch 4 from the previous series. I pointed out some problems with this patch in that series. Please at least address the bugs I pointed out. Thanks. No comments from

Re: [ovs-dev] [PATCH ovn v2] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread Dumitru Ceara
On 10/23/20 12:46 PM, Mark Gray wrote: > On 23/10/2020 11:20, Dumitru Ceara wrote: >> From: Vasu Dasari >> >> Upstream OVS commit: >> commit c99d14775f78cb38b2109add063f58201ba07652 >> Author: Vasu Dasari >> Date: Mon Jul 15 17:15:01 2019 -0400 >> >> ovs-macros: An option to

Re: [ovs-dev] [PATCH ovn v2] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread 0-day Robot
Bleep bloop. Greetings Dumitru Ceara, 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 Vasu Dasari needs to sign off. WARNING: Unexpected sign-offs from developers

Re: [ovs-dev] [PATCH ovn v2] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread Mark Gray
On 23/10/2020 11:20, Dumitru Ceara wrote: > From: Vasu Dasari > > Upstream OVS commit: > commit c99d14775f78cb38b2109add063f58201ba07652 > Author: Vasu Dasari > Date: Mon Jul 15 17:15:01 2019 -0400 > > ovs-macros: An option to suspend test execution on error > > Origins

[ovs-dev] [PATCH v3 ovn] dhcp: add iPXE support to OVN

2020-10-23 Thread Lorenzo Bianconi
Add iPXE support to OVN introducing "bootfile_name_alt" dhcp option. "bootfile_name_alt" dhcp userdata is encoded as option 254 since it is not currently used. When both "bootfile_name" and "bootfile_name_alt" are provided by the CMS, "bootfile_name" will be used for option 67 if the dhcp request

Re: [ovs-dev] [PATCH ovn] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread Dumitru Ceara
On 10/23/20 11:29 AM, Dumitru Ceara wrote: > From: Vasu Dasari > > From: Vasu Dasari > > Upstream OVS commit: > commit c99d14775f78cb38b2109add063f58201ba07652 > Author: Vasu Dasari > Date: Mon Jul 15 17:15:01 2019 -0400 > > ovs-macros: An option to suspend test execution

[ovs-dev] [PATCH ovn v2] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread Dumitru Ceara
From: Vasu Dasari Upstream OVS commit: commit c99d14775f78cb38b2109add063f58201ba07652 Author: Vasu Dasari Date: Mon Jul 15 17:15:01 2019 -0400 ovs-macros: An option to suspend test execution on error Origins for this patch are captured at

Re: [ovs-dev] [PATCH 1/2] Documentation: update IPsec tutorial for F32

2020-10-23 Thread Mark Gray
On 22/10/2020 15:01, Eric Garver wrote: > On Fri, Oct 02, 2020 at 01:33:57PM -0400, Mark Gray wrote: >> F32 requires the "python3-openvswitch" package now. Also, the >> iptables chain "IN_FedoraServer_allow" does not exist on Fedora 32. >> >> Signed-off-by: Mark Gray >> --- >>

Re: [ovs-dev] [PATCH ovn] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread 0-day Robot
Bleep bloop. Greetings Dumitru Ceara, 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 Vasu Dasari needs to sign off. WARNING: Unexpected sign-offs from developers

[ovs-dev] [PATCH RFC dpdk-latest 0/1] netdev-dpdk: Enable DPDK vHost async API's

2020-10-23 Thread Sunil Pai G
This series brings in the new asynchronous vHost API's in DPDK to OVS. With the asynchronous framework, vHost-user can offload the memory copy operations to the hardware like Intel® QuickData Technology without blocking the CPU. This series also attempts to highlight noteable issues associated

[ovs-dev] [PATCH RFC dpdk-latest 1/1] netdev-dpdk: Enable DPDK vHost async API's.

2020-10-23 Thread Sunil Pai G
This patch adds the initial support for DPDK vHost async API's to offload the memory copy operations to the hardware. Signed-off-by: Sunil Pai G --- lib/dpdk-stub.c | 6 + lib/dpdk.c| 13 ++ lib/dpdk.h| 1 + lib/dpif-netdev.c | 19 +- lib/netdev-dpdk.c | 548

[ovs-dev] [PATCH ovn] ovs-macros: Port OVS_PAUSE_TEST support from OpenvSwitch.

2020-10-23 Thread Dumitru Ceara
From: Vasu Dasari From: Vasu Dasari Upstream OVS commit: commit c99d14775f78cb38b2109add063f58201ba07652 Author: Vasu Dasari Date: Mon Jul 15 17:15:01 2019 -0400 ovs-macros: An option to suspend test execution on error Origins for this patch are captured at

Re: [ovs-dev] [PATCH ovn] Fix compilation error due to recent OVS commit.

2020-10-23 Thread Numan Siddique
On Fri, Oct 23, 2020 at 1:56 AM Mark Michelson wrote: > > As you're well aware, this patch started a big discussion regarding > OVN's policy for building OVS. With our current policy, this is the > proper way to handle this. > > Acked-by: Mark Michelson Thanks. I applied this patch to master to

Re: [ovs-dev] [PATCH ovn] ovn-northd: Handle IPv6 addresses with prefixes for port security.

2020-10-23 Thread Dumitru Ceara
On 10/22/20 3:50 PM, Numan Siddique wrote: > On Tue, Oct 20, 2020 at 8:25 PM Dumitru Ceara wrote: >> >> Reported-by: Rodolfo Alonso >> Reported-at: https://bugzilla.redhat.com/1856898 >> CC: Numan Siddique >> Fixes: f631376bf75d ("ovn-northd: Handle IPv4 addresses with prefixes in >> lport

[ovs-dev] [PATCH ovn 2/2] ovn-detrace: Improve DB connection error messages.

2020-10-23 Thread Dumitru Ceara
Fixes: b326503f8176 ("ovn-detrace: Support SSL remotes.") Signed-off-by: Dumitru Ceara --- utilities/ovn-detrace.in |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utilities/ovn-detrace.in b/utilities/ovn-detrace.in index 2344f52..1dd98df 100755 ---

[ovs-dev] [PATCH ovn 1/2] ovn-detrace: Only decode br-int OVS interfaces.

2020-10-23 Thread Dumitru Ceara
Do not assume 'ofport' is unique for all OVS interfaces in the system. This is true only for interfaces within the same OVS bridge. Also, only decode br-int related interfaces. Also, fix printing of potential duplicate UUIDs decoded from cookies. Reported-by: Michael Cambria Reported-at:

[ovs-dev] [PATCH ovn 0/2] ovn-detrace: Fix OVS interface decoding and error reporting.

2020-10-23 Thread Dumitru Ceara
Signed-off-by: Dumitru Ceara Dumitru Ceara (2): ovn-detrace: Only decode br-int OVS interfaces. ovn-detrace: Improve DB connection error messages. utilities/ovn-detrace.in | 40 ++-- 1 file changed, 34 insertions(+), 6 deletions(-)

Re: [ovs-dev] [PATCH ovn v5 4/9] ovn-northd: Add commands to set/get parallelisation thresholds

2020-10-23 Thread Anton Ivanov
On 22/10/2020 20:50, Mark Michelson wrote: This appears to be exactly the same as patch 4 from the previous series. I pointed out some problems with this patch in that series. Please at least address the bugs I pointed out. Thanks. No comments from you on patch 4 in series 4:

[ovs-dev] Did you received my previous email?

2020-10-23 Thread Mr. Greg Osborn
Do you still use this email account? get back to me asap i need to talk to you urgently. Advocate Greg Osborn Direct Telephone: +27661761901 ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev