[ovs-dev] [PATCH ovn v3 5/7] northd: Make use of new hairpin actions.

2020-11-04 Thread numans
From: Numan Siddique This patch makes use of the new hairpin OVN actions - chk_lb_hairpin, chk_lb_hairpin_reply and ct_snat_to_vip. Suppose there are 'm' load balancers associated to a logical switch and each load balancer has 'n' VIPs and each VIP has 'p' backends then ovn-northd adds (m *

[ovs-dev] [PATCH ovn v3 6/7] ovn-detrace: Add SB Load Balancer cookier handler.

2020-11-04 Thread numans
From: Numan Siddique Signed-off-by: Numan Siddique --- utilities/ovn-detrace.in | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/utilities/ovn-detrace.in b/utilities/ovn-detrace.in index 1dd98df0aa..af42b5fc4e 100755 --- a/utilities/ovn-detrace.in +++

[ovs-dev] [PATCH ovn v3 7/7] sbctl: Add Load Balancer support for vflows option.

2020-11-04 Thread numans
From: Numan Siddique Signed-off-by: Numan Siddique --- utilities/ovn-sbctl.c | 56 +++ 1 file changed, 56 insertions(+) diff --git a/utilities/ovn-sbctl.c b/utilities/ovn-sbctl.c index 00c112c7e5..d3c37369d2 100644 --- a/utilities/ovn-sbctl.c +++

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

2020-11-04 Thread numans
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 packet is a reply of the hairpinned packet.

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

2020-11-04 Thread numans
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 patch attempts to reduce the these logical

[ovs-dev] [PATCH ovn v3 2/7] northd: Refactor load balancer vip parsing.

2020-11-04 Thread numans
From: Numan Siddique Parsing of the load balancer VIPs is moved to a separate file - lib/lb.c. ovn-northd makes use of these functions. Upcoming patch will make use of these util functions for parsing SB Load_Balancers. Signed-off-by: Numan Siddique --- lib/automake.mk | 4 +- lib/lb.c

[ovs-dev] [PATCH ovn v3 1/7] Add new table Load_Balancer in Southbound database.

2020-11-04 Thread numans
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 Siddique --- northd/ovn-northd.c | 146

[ovs-dev] [PATCH ovn v3 0/7] Optimize load balancer hairpin logical flows.

2020-11-04 Thread numans
From: Numan Siddique This patch series optimizes the load balancer hairpin logical flows. Presently, ovn-northd generates a lot of these logical flows. Suppose there are 'm' load balancers associated to a logical switch and each load balancer has 'n' VIPs and each VIP has 'p' backends then

Re: [ovs-dev] [PATCH ovn v2 6/6] ovn-northd-ddlog: New implementation of ovn-northd based on ddlog.

2020-11-04 Thread 0-day Robot
Bleep bloop. Greetings Ben Pfaff, 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: Comment with 'xxx' marker #4597 FILE: northd/ovn-northd-ddlog.c:1273: * XXX If the

Re: [ovs-dev] [PATCH ovn v2 4/6] Export `VLOG_WARN` and `VLOG_ERR` from libovn for use in ddlog

2020-11-04 Thread 0-day Robot
Bleep bloop. Greetings Ben Pfaff, 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: Unexpected sign-offs from developers who are not authors or co-authors or committers:

[ovs-dev] [PATCH ovn v2 5/6] tests: Prepare for multiple northd types.

2020-11-04 Thread Ben Pfaff
The idea is to run each test twice, once with ovn-northd, once with ovn-northd-ddlog. To do that, we add a macro OVN_FOR_EACH_NORTHD and bracket each test that uses ovn-northd in it. Signed-off-by: Ben Pfaff --- tests/ovn-ic.at | 11 +- tests/ovn-macros.at | 96 ++--

[ovs-dev] [PATCH ovn v2 0/6] Add DDlog implementation of ovn-northd

2020-11-04 Thread Ben Pfaff
v1->v2 (thanks Numan!): - Applied several patches. - New commit to add documentation for the system-userspace testsuite. - New patches to improve the testsuite a couple of ways. - Revised "Prepare for multiple northd types" to fix system-userspace testsuite. - Updated DDlog

[ovs-dev] [PATCH ovn v2 4/6] Export `VLOG_WARN` and `VLOG_ERR` from libovn for use in ddlog

2020-11-04 Thread Ben Pfaff
From: Leonid Ryzhyk Export `ddlog_warn` and `ddlog_err` functions that are just wrappers around `VLOG_WARN` and `VLOG_ERR`. This is not ideal because the functions are exported by `ovn_util.c` and the resulting log messages use `ovn_util` as module name. More importantly, these functions do

[ovs-dev] [PATCH ovn v2 1/6] Documentation: Document the system-userspace testsuite.

2020-11-04 Thread Ben Pfaff
I hadn't run this before so I had to discover how it worked. Signed-off-by: Ben Pfaff --- Documentation/topics/testing.rst | 35 tests/automake.mk| 6 -- 2 files changed, 39 insertions(+), 2 deletions(-) diff --git

[ovs-dev] [PATCH ovn v2 3/6] tests: Improve checking in "test unixctl" test.

2020-11-04 Thread Ben Pfaff
It seems worthwhile to ensure that this call does in fact time out. Signed-off-by: Ben Pfaff --- tests/ovn-northd.at | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/ovn-northd.at b/tests/ovn-northd.at index 0bf20c1a7053..26376c367178 100644 ---

[ovs-dev] [PATCH ovn v2 2/6] tests: Remove explicit timeouts from most utility invocations.

2020-11-04 Thread Ben Pfaff
atlocal.in sets a global default 30-second timeout for all utility definitions, via OVS_CTL_TIMEOUT=30, so there's no need for individual shorter timeouts, and they can be harmful in cases where the machine is running slowly for one reason or another. Signed-off-by: Ben Pfaff ---

[ovs-dev] Formación Bonificable (Último plazo de inscripción 2020)

2020-11-04 Thread FOESCO
Buenos días Llegadas estas fechas y como cada año, recordamos a todas las empresas Españolas su derecho a consumir el Crédito de Formación del que disponen para la formación de sus empleados en activo o en ERTE, antes de su caducidad a final de año. Actualmente se encuentra abierto el plazo

[ovs-dev] School bag bag manufacturer

2020-11-04 Thread Gabie via dev
Hello , I'm Gabie from Shaodong Gabi Bags Co., Ltd. ,school bag, laptop bag, shopping bag ,sports bag are main products . How about your bags' business ,can I send our catalogue to you ? Wish everything is very good in 2020 . Best regards Gabie ___ dev

Re: [ovs-dev] [PATCH] ovs-bugtool: Fix crash when enable --ovs.

2020-11-04 Thread Gregory Rose
On 11/4/2020 3:16 PM, William Tu wrote: When enabling '--ovs' or when not using '-y', ovs-bugtool crashes due to Traceback (most recent call last): File "/usr/local/sbin/ovs-bugtool", line 1410, in sys.exit(main()) File "/usr/local/sbin/ovs-bugtool", line 690, in main for (k,

[ovs-dev] [PATCH] ovs-bugtool: Fix crash when enable --ovs.

2020-11-04 Thread William Tu
When enabling '--ovs' or when not using '-y', ovs-bugtool crashes due to Traceback (most recent call last): File "/usr/local/sbin/ovs-bugtool", line 1410, in sys.exit(main()) File "/usr/local/sbin/ovs-bugtool", line 690, in main for (k, v) in data.items(): RuntimeError: dictionary

[ovs-dev] Control interno para evitar fraudes

2020-11-04 Thread Contabilidad Forense
Webinar en Vivo: Contabilidad Forense. El control interno como herramienta para evitar fraudes Jueves 26 de Noviembre - Horario de 10:00 a 17:00 Hrs. Identificaremos y conoceremos los puntos finos sobre la contabilidad forense, el control interno y la auditoría como elementos fundamentales para

Re: [ovs-dev] [PATCH 1/2] compat: Fix build issue on RHEL 7.7

2020-11-04 Thread Gregory Rose
On 11/3/2020 5:07 PM, Yi-Hung Wei wrote: On Tue, Nov 3, 2020 at 4:06 PM Gregory Rose wrote: On 11/3/2020 2:17 PM, Yi-Hung Wei wrote: [snip] Hi Greg, I thought your change in datapath.c is to fix the following new added lines in 9ba57fc7 ("datapath: Add hash info to upcall"). I

Re: [ovs-dev] Can we follow up on this... $24.99/mo Credit Card Processing (Unlimited / Flat-Fee)

2020-11-04 Thread Annie
Paying more than $500/month in Visa/MasterCard Credit Card Processing Fees? Give me 3 minutes to explain your alternative. 1) How much of your profit margin is 'spent' on fees every month? Tired of paying? Your processor isn't telling you about all the available options. Why don't they

[ovs-dev] OVS-DPDK patch review list update

2020-11-04 Thread Stokes, Ian
Hi All, Please see the updated patch review list from this week's call. Note we've updated the list to include patches deferred in addition to the previously listed states. Regards Ian Patch List === Merge Candidate (Close to merging) === name: ovsdb: Remove read permission of *.db from

Re: [ovs-dev] [PATCH ovn 11/12] tests: Prepare for multiple northd types.

2020-11-04 Thread Ben Pfaff
On Wed, Nov 04, 2020 at 11:55:38PM +0530, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 12:34 PM Ben Pfaff wrote: > > > > The idea is to run each test twice, once with ovn-northd, once > > with ovn-northd-ddlog. To do that, we add a macro OVN_FOR_EACH_NORTHD > > and bracket each test that uses

Re: [ovs-dev] [PATCH ovn 10/12] Export `VLOG_WARN` and `VLOG_ERR` from libovn for use in ddlog

2020-11-04 Thread Ben Pfaff
On Wed, Nov 04, 2020 at 11:20:31PM +0530, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 12:34 PM Ben Pfaff wrote: > > > > From: Leonid Ryzhyk > > > > Export `ddlog_warn` and `ddlog_err` functions that are just wrappers > > around `VLOG_WARN` and `VLOG_ERR`. This is not ideal because the > >

Re: [ovs-dev] [PATCH ovn 09/12] northd: Move functions from ovn-northd.c into ovn-util.

2020-11-04 Thread Ben Pfaff
On Wed, Nov 04, 2020 at 11:19:45PM +0530, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 12:33 PM Ben Pfaff wrote: > > > > From: Justin Pettit > > > > The upcoming ddlog implementation of northd needs these functions too, > > so they should be in a common library. > > > > Signed-off-by: Justin

Re: [ovs-dev] [PATCH ovn 11/12] tests: Prepare for multiple northd types.

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 12:34 PM Ben Pfaff wrote: > > The idea is to run each test twice, once with ovn-northd, once > with ovn-northd-ddlog. To do that, we add a macro OVN_FOR_EACH_NORTHD > and bracket each test that uses ovn-northd in it. > > Signed-off-by: Ben Pfaff > --- > tests/ovn-ic.at

[ovs-dev] IBM Watson, MS Azure Users Records

2020-11-04 Thread Wendy Williams
Hi, I would like to know if you are interested in acquiring IBM Watson Users Records for your marketing and sales needs? We also have: Microsoft Azure, TensorFlow, AWS, ServiceNow, OpenShift, VMware Tanzu, Kubernetes and many more. Data Fields: Name, Company's Name, Phone Number, Fax

Re: [ovs-dev] [PATCH ovn 10/12] Export `VLOG_WARN` and `VLOG_ERR` from libovn for use in ddlog

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 12:34 PM Ben Pfaff wrote: > > From: Leonid Ryzhyk > > Export `ddlog_warn` and `ddlog_err` functions that are just wrappers > around `VLOG_WARN` and `VLOG_ERR`. This is not ideal because the > functions are exported by `ovn_util.c` and the resulting log messages use >

Re: [ovs-dev] [PATCH ovn 09/12] northd: Move functions from ovn-northd.c into ovn-util.

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 12:33 PM Ben Pfaff wrote: > > From: Justin Pettit > > The upcoming ddlog implementation of northd needs these functions too, > so they should be in a common library. > > Signed-off-by: Justin Pettit Acked-by: Numan Siddique One question: Does a submitter of a patch

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

2020-11-04 Thread Ben Pfaff
I get the impression (from the article) that 802.11 wireless framing includes a sequence number. Maybe it is the "sequence control" in the diagram here: https://en.wikipedia.org/wiki/802.11_Frame_Types. If so, OVS doesn't have or provide access to it, so it can't calculate gaps. On Wed, Nov 04,

Re: [ovs-dev] [PATCH] ofp-parse: Support "igmp" keyword in flows.

2020-11-04 Thread Ilya Maximets
On 11/3/20 5:46 PM, Ben Pfaff wrote: > On Tue, Nov 03, 2020 at 03:53:51AM +0100, Ilya Maximets wrote: >> On 11/3/20 12:28 AM, Ben Pfaff wrote: >>> match_format() prints out "igmp" for IGMP flows, but >>> ofp_parse_protocol() didn't accept it, which meant that OVS would print >>> out a flow that it

Re: [ovs-dev] [PATCH ovn 08/12] ovn-l7: Move ipv6_addr_is_routable_multicast() into new .c file.

2020-11-04 Thread Ben Pfaff
On Wed, Nov 04, 2020 at 03:40:57PM +0530, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 12:34 PM Ben Pfaff wrote: > > > > This makes it possible for the upcoming ovn-northd-ddlog program to call > > into it from Rust. > > > > Signed-off-by: Ben Pfaff > > > Acked-by: Numan Siddique Thanks, I

Re: [ovs-dev] [PATCH ovn 01/12] tests: Improve "dhcpv4 : 1 HV, 2 LS, 2 LSPs/LS".

2020-11-04 Thread Ben Pfaff
On Wed, Nov 04, 2020 at 03:36:20PM +0530, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 12:33 PM Ben Pfaff wrote: > > > > This change makes the test much more debuggable: > > > > - Make it easier to find the particular failing test. > > > > - Use correct checksums so that the packets can be

Re: [ovs-dev] [PATCH ovn 07/12] Documentation: Update repo information and prerequisites.

2020-11-04 Thread Ben Pfaff
On Wed, Nov 04, 2020 at 03:38:44PM +0530, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 12:33 PM Ben Pfaff wrote: > > > > At the time this was written, there weren't any OVN releases independent > > of OVS, but now there are so we should mention them. > > > > Also, I don't think it's worth

Re: [ovs-dev] [PATCH ovn v2 7/7] sbctl: Add Load Balancer support for vflows option.

2020-11-04 Thread Numan Siddique
On Fri, Oct 30, 2020 at 3:13 AM Dumitru Ceara wrote: > > On 10/27/20 6:19 PM, num...@ovn.org wrote: > > From: Numan Siddique > > > > Signed-off-by: Numan Siddique > > --- > > utilities/ovn-sbctl.c | 55 +++ > > 1 file changed, 55 insertions(+) > > > >

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

2020-11-04 Thread Numan Siddique
On Fri, Oct 30, 2020 at 2:48 AM Dumitru Ceara wrote: > > On 10/27/20 6:18 PM, num...@ovn.org wrote: > > From: Numan Siddique > > > > Hi Numan, > > > Presently to handle the load balancer hairpin traffic (the traffic destined > > to the > > load balancer VIP is dnatted to the backend which

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

2020-11-04 Thread Numan Siddique
On Wed, Oct 28, 2020 at 3:30 AM Dumitru Ceara wrote: > > On 10/27/20 6:16 PM, 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

[ovs-dev] NABÍDKA PŮJČKY

2020-11-04 Thread hector leo
Potřebujete rychlou a záruční půjčku k zaplacení účtů nebo zahájení podnikání? Nabízím osobní i obchodní půjčky, abych uspokojil vaše finanční potřeby za nízkou úrokovou sazbu 3%. Kontaktujte nás ještě dnes prostřednictvím hectorleoloancompan...@gmail.com

Re: [ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 Thread Dumitru Ceara
On 11/4/20 12:57 PM, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 4:42 PM Dumitru Ceara wrote: >> >> On 11/4/20 11:59 AM, 0-day Robot wrote: >> >> [...] >> >>> controller/physical.c:387:23: error: ‘struct ofpact_bundle’ has no member >>> named ‘n_slaves’ >>> if (bundle->n_slaves

Re: [ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 Thread Dumitru Ceara
On 11/4/20 12:57 PM, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 4:42 PM Dumitru Ceara wrote: >> >> On 11/4/20 11:59 AM, 0-day Robot wrote: >> >> [...] >> >>> controller/physical.c:387:23: error: ‘struct ofpact_bundle’ has no member >>> named ‘n_slaves’ >>> if (bundle->n_slaves

Re: [ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 4:22 PM Dumitru Ceara wrote: > > OVN uses GARPs to announce changes to locally owned NAT addresses. This is > OK when updating upstream router caches but is unnecessary for updating OVN > logical router MAC_Bindings. > > ovn-controller already has the information required

Re: [ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 4:42 PM Dumitru Ceara wrote: > > On 11/4/20 11:59 AM, 0-day Robot wrote: > > [...] > > > controller/physical.c:387:23: error: ‘struct ofpact_bundle’ has no member > > named ‘n_slaves’ > > if (bundle->n_slaves >= BUNDLE_MAX_SLAVES) { > >

Re: [ovs-dev] [PATCH ovn] northd: fix lb_action when there are no active backends for lb health_check

2020-11-04 Thread Flavio Fernandes
Tested-by: Flavio Fernandes mailto:fla...@flaviof.com>> > On Nov 3, 2020, at 11:43 AM, Lorenzo Bianconi > wrote: > > Fix the following warning reported by ovn-controller when there are no > active backends for lb health_check and selection_fields have been > configured for hash computation >

Re: [ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 Thread Dumitru Ceara
On 11/4/20 11:59 AM, 0-day Robot wrote: [...] > controller/physical.c:387:23: error: ‘struct ofpact_bundle’ has no member > named ‘n_slaves’ > if (bundle->n_slaves >= BUNDLE_MAX_SLAVES) { >^ > controller/physical.c:387:37: error: ‘BUNDLE_MAX_SLAVES’

Re: [ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 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. build: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I ./include -I ./include -I ./ovn -I ./include -I

[ovs-dev] [PATCH ovn branch-20.09 2/2] ovn-northd: Limit self originated ARP/ND broadcast domain.

2020-11-04 Thread Dumitru Ceara
Considering the following large scale deployment: external-network -- public-logical-switch -- router-1 -- sw1 -- VIF-1 -- router-2 -- sw2 -- VIF-2 ... -- router-n -- swn

[ovs-dev] [PATCH ovn branch-20.09 1/2] pinctrl: Directly update MAC_Bindings created by self originated GARPs.

2020-11-04 Thread Dumitru Ceara
OVN uses GARPs to announce changes to locally owned NAT addresses. This is OK when updating upstream router caches but is unnecessary for updating OVN logical router MAC_Bindings. ovn-controller already has the information required for directly updating/inserting the MAC_Bindings that would be

[ovs-dev] [PATCH ovn branch-20.09 0/2] Further restrict ARP/ND broadcast domain for E-W and S-N traffic.

2020-11-04 Thread Dumitru Ceara
This series aims at further restricting ARP/ND broadcast domain for self originated packets. Until now those packets were always flooded on all ports of the switch. The first patch of the series is needed in order to remove dependency on self-originated GARPs to be sent through the network (OVS)

Re: [ovs-dev] [PATCH ovn 08/12] ovn-l7: Move ipv6_addr_is_routable_multicast() into new .c file.

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 12:34 PM Ben Pfaff wrote: > > This makes it possible for the upcoming ovn-northd-ddlog program to call > into it from Rust. > > Signed-off-by: Ben Pfaff Acked-by: Numan Siddique Thanks Numan > --- > lib/automake.mk | 1 + > lib/ovn-l7.c| 39

Re: [ovs-dev] [PATCH ovn 07/12] Documentation: Update repo information and prerequisites.

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 12:33 PM Ben Pfaff wrote: > > At the time this was written, there weren't any OVN releases independent > of OVS, but now there are so we should mention them. > > Also, I don't think it's worth talking about compilers other than the > three listed. We haven't tested with

Re: [ovs-dev] [PATCH ovn 01/12] tests: Improve "dhcpv4 : 1 HV, 2 LS, 2 LSPs/LS".

2020-11-04 Thread Numan Siddique
On Wed, Nov 4, 2020 at 12:33 PM Ben Pfaff wrote: > > This change makes the test much more debuggable: > > - Make it easier to find the particular failing test. > > - Use correct checksums so that the packets can be compared for > equality instead of omitting the checksum field. > > - Factor out

Re: [ovs-dev] [PATCH ovn 0/2] Further restrict ARP/ND broadcast domain for E-W and S-N traffic.

2020-11-04 Thread Dumitru Ceara
On 11/4/20 8:54 AM, Numan Siddique wrote: > On Wed, Nov 4, 2020 at 3:44 AM Mark Michelson wrote: >> >> Aside from spelling "update" properly in the title of patch 1, this Oops, thanks for spotting this! >> looks good to me. >> >> Acked-by: Mark Michelson Thanks! > > Thanks Dumitru for fixing

[ovs-dev] From Mrs.Lea Edem

2020-11-04 Thread Lea Edem
I'm Mrs.Lea Edem, I work with one of the leading banks here in Lome, the capital, I sent mail earlier without an answer. I have an important business that I want to discuss with you. I want to move a substantial amount of money that belonged to our client who died since 2010 leaving nobody to

Re: [ovs-dev] [PATCH ovn 12/12] ovn-northd-ddlog: New implementation of ovn-northd based on ddlog.

2020-11-04 Thread 0-day Robot
Bleep bloop. Greetings Ben Pfaff, 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: Comment with 'xxx' marker #4578 FILE: northd/ovn-northd-ddlog.c:1273: * XXX If the

Re: [ovs-dev] [PATCH ovn 10/12] Export `VLOG_WARN` and `VLOG_ERR` from libovn for use in ddlog

2020-11-04 Thread 0-day Robot
Bleep bloop. Greetings Ben Pfaff, 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: Unexpected sign-offs from developers who are not authors or co-authors or committers: