[ovs-dev] Use more than 200000 flows in datapath/kernel cache flows

2019-10-29 Thread Jerry C.
Sending again with a meaningful subject:) Dear ovs-dev, I'm trying to see if I can increase the number of flows supported in kernel cache. I found two relevant config options (other_config:flow-limit and upcall/flow limit). My understanding was that other_config:flow-limit is for the normal

Re: [ovs-dev] [PATCH net-next v5 00/10] optimize openvswitch flow looking up

2019-10-29 Thread David Miller
Date: Sat, 19 Oct 2019 16:08:34 +0800 The date on your postings is in the past. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] (no subject)

2019-10-29 Thread Jerry C.
Dear ovs-dev, I'm trying to see if I can increase the number of flows supported in kernel cache. I found two relevant config options (other_config:flow-limit and upcall/flow limit). My understanding was that other_config:flow-limit is for the normal openflow flows while upcall is for the kernel

[ovs-dev] [PATCH net-next v5 10/10] net: openvswitch: simplify the ovs_dp_cmd_new

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang use the specified functions to init resource. Signed-off-by: Tonghao Zhang Tested-by: Greg Rose --- net/openvswitch/datapath.c | 60 +- 1 file changed, 38 insertions(+), 22 deletions(-) diff --git a/net/openvswitch/datapath.c

[ovs-dev] [PATCH net-next v5 08/10] net: openvswitch: fix possible memleak on destroy flow-table

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang When we destroy the flow tables which may contain the flow_mask, so release the flow mask struct. Signed-off-by: Tonghao Zhang Tested-by: Greg Rose --- net/openvswitch/flow_table.c | 185 +++ 1 file changed, 97 insertions(+), 88

[ovs-dev] [PATCH net-next v5 09/10] net: openvswitch: don't unlock mutex when changing the user_features fails

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang Unlocking of a not locked mutex is not allowed. Other kernel thread may be in critical section while we unlock it because of setting user_feature fail. Fixes: 95a7233c4 ("net: openvswitch: Set OvS recirc_id from tc chain index") Cc: Paul Blakey Signed-off-by: Tonghao Zhang

[ovs-dev] [PATCH net-next v5 06/10] net: openvswitch: simplify the flow_hash

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang Simplify the code and remove the unnecessary BUILD_BUG_ON. Signed-off-by: Tonghao Zhang Tested-by: Greg Rose Acked-by: William Tu --- net/openvswitch/flow_table.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/net/openvswitch/flow_table.c

[ovs-dev] [PATCH net-next v5 07/10] net: openvswitch: add likely in flow_lookup

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang The most case *index < ma->max, and flow-mask is not NULL. We add un/likely for performance. Signed-off-by: Tonghao Zhang Tested-by: Greg Rose Acked-by: William Tu --- net/openvswitch/flow_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[ovs-dev] [PATCH net-next v5 04/10] net: openvswitch: optimize flow mask cache hash collision

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang Port the codes to linux upstream and with little changes. Pravin B Shelar, says: | In case hash collision on mask cache, OVS does extra flow | lookup. Following patch avoid it. Link: https://github.com/openvswitch/ovs/commit/0e6efbe2712da03522532dc5e84806a96f6a0dd1

[ovs-dev] [PATCH net-next v5 05/10] net: openvswitch: optimize flow-mask looking up

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang The full looking up on flow table traverses all mask array. If mask-array is too large, the number of invalid flow-mask increase, performance will be drop. One bad case, for example: M means flow-mask is valid and NULL of flow-mask means deleted.

[ovs-dev] [PATCH net-next v5 03/10] net: openvswitch: shrink the mask array if necessary

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang When creating and inserting flow-mask, if there is no available flow-mask, we realloc the mask array. When removing flow-mask, if necessary, we shrink mask array. Signed-off-by: Tonghao Zhang Tested-by: Greg Rose Acked-by: William Tu --- net/openvswitch/flow_table.c | 33

[ovs-dev] [PATCH net-next v5 02/10] net: openvswitch: convert mask list in mask array

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang Port the codes to linux upstream and with little changes. Pravin B Shelar, says: | mask caches index of mask in mask_list. On packet recv OVS | need to traverse mask-list to get cached mask. Therefore array | is better for retrieving cached mask. This also allows better |

[ovs-dev] [PATCH net-next v5 01/10] net: openvswitch: add flow-mask cache for performance

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang The idea of this optimization comes from a patch which is committed in 2014, openvswitch community. The author is Pravin B Shelar. In order to get high performance, I implement it again. Later patches will use it. Pravin B Shelar, says: | On every packet OVS needs to lookup

[ovs-dev] [PATCH net-next v5 00/10] optimize openvswitch flow looking up

2019-10-29 Thread xiangxia . m . yue
From: Tonghao Zhang This series patch optimize openvswitch for performance or simplify codes. Patch 1, 2, 4: Port Pravin B Shelar patches to linux upstream with little changes. Patch 5, 6, 7: Optimize the flow looking up and simplify the flow hash. Patch 8, 9: are bugfix. The performance

[ovs-dev] [HELP] Question about userspace meter

2019-10-29 Thread txfh2007 via dev
Hi all: I have been testing OVS-DPDK Rate limit using meter table these days, but I have found the rate deviation is larger than kernel meter. My test result is as below: case 1. No Rate limit : Iperf between two VMs(on the same compute node) TCP bandwidth is above 1G case 2. Rate

Re: [ovs-dev] [PATCHv2] netdev-afxdp: Enable loading XDP program.

2019-10-29 Thread William Tu
Hi Eelco, Thanks for your review. On Tue, Oct 29, 2019 at 8:28 AM Eelco Chaudron wrote: > > See comments inline… > > On 5 Oct 2019, at 2:12, William Tu wrote: > > > Now netdev-afxdp always forwards all packets to userspace because > > it is using libbpf's default XDP program, see

Re: [ovs-dev] [PATCH ovn 4/6] northd: Add lflows for IPv6 NAT.

2019-10-29 Thread 0-day Robot
Bleep bloop. Greetings Russell Bryant, 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 82 characters long (recommended limit is 79) #86 FILE:

Re: [ovs-dev] [PATCH ovn 3/6] ovn-nbctl: Allow IPv6 NAT rules to be added

2019-10-29 Thread 0-day Robot
Bleep bloop. Greetings Russell Bryant, 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 81 characters long (recommended limit is 79) #154 FILE:

Re: [ovs-dev] [PATCH ovn 2/6] actions: Add IPv6 support to lflow NAT actions

2019-10-29 Thread 0-day Robot
Bleep bloop. Greetings Russell Bryant, 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 85 characters long (recommended limit is 79) #172 FILE:

[ovs-dev] [PATCH ovn 5/6] system-ovn: Add IPv6 NAT test cases

2019-10-29 Thread Russell Bryant
These tests failed prior to the changes leading up to this one. Signed-off-by: Russell Bryant --- tests/system-ovn.at | 862 +++- 1 file changed, 860 insertions(+), 2 deletions(-) diff --git a/tests/system-ovn.at b/tests/system-ovn.at index

[ovs-dev] [PATCH ovn 3/6] ovn-nbctl: Allow IPv6 NAT rules to be added

2019-10-29 Thread Russell Bryant
Signed-off-by: Russell Bryant --- tests/ovn-nbctl.at| 41 utilities/ovn-nbctl.c | 48 --- 2 files changed, 68 insertions(+), 21 deletions(-) diff --git a/tests/ovn-nbctl.at b/tests/ovn-nbctl.at index

[ovs-dev] [PATCH ovn 6/6] NEWS: Add IPv6 NAT support

2019-10-29 Thread Russell Bryant
Signed-off-by: Russell Bryant --- NEWS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS b/NEWS index 73045d65f..ab2f13318 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +Post-OVS-v2.12.0 +- + - OVN was split out from the OVS repository and is now released +

[ovs-dev] [PATCH ovn 4/6] northd: Add lflows for IPv6 NAT.

2019-10-29 Thread Russell Bryant
Signed-off-by: Russell Bryant --- northd/ovn-northd.c | 376 1 file changed, 278 insertions(+), 98 deletions(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index ae81a6944..a10017ba1 100644 --- a/northd/ovn-northd.c +++

[ovs-dev] [PATCH ovn 1/6] northd: Fix table ID for IPv6 router ingress.

2019-10-29 Thread Russell Bryant
I noticed that this table number was outdated. This is now table 3. There are a few other sections of code for this table that were all correctly referencing table 3. Signed-off-by: Russell Bryant --- northd/ovn-northd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[ovs-dev] [PATCH ovn 2/6] actions: Add IPv6 support to lflow NAT actions

2019-10-29 Thread Russell Bryant
Signed-off-by: Russell Bryant --- include/ovn/actions.h | 6 +- lib/actions.c | 35 +++ tests/ovn.at | 18 -- utilities/ovn-trace.c | 14 +- 4 files changed, 53 insertions(+), 20 deletions(-) diff --git

[ovs-dev] [PATCH ovn 0/6] Add IPv6 NAT support

2019-10-29 Thread Russell Bryant
This came up with reviewing the usage of ovn-kubernetes with IPv6. It's more straight forward to start with using IPv6 NAT, matching the IPv4 network topology with Kubernetes. Eventually, we'd want to allow routable IPv6 addresses everywhere, but this gives us the option of using NAT where it's

Re: [ovs-dev] [PATCH ovn 18/19] ovn-ctl: Support commands for interconnection.

2019-10-29 Thread aginwala
Thanks Han for the patches. OVN-ctl doesn't seem to accept inb/sb args. On Sun, Oct 20, 2019 at 5:55 PM Han Zhou wrote: > Add support for managing IC-NB and IC-SB DBs, and ovn-ic daemon. > > Signed-off-by: Han Zhou > --- > utilities/ovn-ctl | 362 >

Re: [ovs-dev] [PATCH ovn 10/19] ovn-ic: Interconnection controller with AZ registeration.

2019-10-29 Thread aginwala
Thanks Han for the patches. On Sun, Oct 20, 2019 at 5:54 PM Han Zhou wrote: > This patch introduces interconnection controller, ovn-ic, and > implements the basic AZ registration feature: taking the AZ > name from NB DB and create an Availability_Zone entry in > IC-SB DB. > > Signed-off-by: Han

Re: [ovs-dev] [PATCH ovn 19/19] tutorial: Add tutorial for OVN Interconnection.

2019-10-29 Thread aginwala
Thanks Han for the correction. Just one more minor typo in the tutorial below. I hit some roadblocks to start ic controller on different az but got my setup running with workarounds in current code and have posted in comments which needs fix for sure. I tried with 2 different ovn setups with 2

Re: [ovs-dev] [PATCH v3 1/2 ovn] OVN: ADD nbctl cli to mark a dnat_and_snat rule as stateless

2019-10-29 Thread 0-day Robot
Bleep bloop. Greetings Ankur Sharma, 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 220 characters long (recommended limit is 79) #121 FILE:

[ovs-dev] New PO

2019-10-29 Thread Sui
Good Day, Please do check our new order list and send quote us. Get back to us with best price confirmation. Thanks Regards, Sui Purchase Manager,___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] [PATCH v3 2/2 ovn] OVN: Use ip4.src and ip4.dst actions for NAT rules

2019-10-29 Thread Ankur Sharma
For dnat_and_snat rules which are meant to be stateless instead of using ct_snat/dnat OVN actions, we will use ip4.src/ip4.dst. This actions will do 1:1 mapping to inner ip to external ip, while recalculating the checksums. Signed-off-by: Ankur Sharma --- northd/ovn-northd.8.xml | 34 --

[ovs-dev] [PATCH v3 1/2 ovn] OVN: ADD nbctl cli to mark a dnat_and_snat rule as stateless

2019-10-29 Thread Ankur Sharma
Adding ovn-nbctl to mark a dnat_and_snat rule as stateless. This configuration will added to "options" column of NAT table. Signed-off-by: Ankur Sharma --- ovn-nb.ovsschema | 6 -- ovn-nb.xml| 5 + tests/ovn-nbctl.at| 29 +

[ovs-dev] [PATCH v3 0/2] ALLOW Stateless NAT operations

2019-10-29 Thread Ankur Sharma
NAT implementation in OVN uses connection tracker to replace source and dest ips. This implementation works fine and is the right approach for cases where external ips are shared (i.e. SNAT) or where we replace ip only when relevant flow is there (i.e. DNAT). However, it opens the possibility of

[ovs-dev] [PATCH v2] travis: support ppc64le builds

2019-10-29 Thread David Wilder
Add support for travis-ci ppc64le builds. - Updated matrix in .travis.yml to include a ppc64le build. - Move package install needed for 32bit builds to .travis/linux-prepare.sh. To keep the total build time at an acceptable level only a single build job is included in the matrix for ppc64le. A

Re: [ovs-dev] [PATCH net-next v4 08/10] net: openvswitch: fix possible memleak on destroy flow-table

2019-10-29 Thread Pravin Shelar
On Tue, Oct 29, 2019 at 4:31 AM Tonghao Zhang wrote: > > On Tue, Oct 29, 2019 at 3:38 PM Pravin Shelar wrote: > > > > On Sun, Oct 27, 2019 at 11:49 PM Tonghao Zhang > > wrote: > > > > > > On Thu, Oct 24, 2019 at 3:14 PM Pravin Shelar wrote: > > > > > > > > On Tue, Oct 22, 2019 at 7:35 PM

[ovs-dev] Comunicación efectiva y empática del coach

2019-10-29 Thread Las 6 C’s del coaching exitoso
26 de Noviembre | Horario de 10:00 a 17:00 hrs. | (hora del centro de México) - Coaching y liderazgo efectivo. - ¿De qué hablaremos? Este webinar tiene como finalidad llevar a los participantes a ser capaces de intervenir positivamente en otros individuos en funciones de liderazgo,

Re: [ovs-dev] [PATCHv6] netdev-afxdp: Add need_wakeup supprt.

2019-10-29 Thread Ilya Maximets
On 29.10.2019 0:32, William Tu wrote: On Mon, Oct 28, 2019 at 12:11 PM Ilya Maximets wrote: On 28.10.2019 11:46, Eelco Chaudron wrote: On 23 Oct 2019, at 23:06, William Tu wrote: The patch adds support for using need_wakeup flag in AF_XDP rings. A new option, use_need_wakeup, is added.

Re: [ovs-dev] [PATCH ] travis: support ppc64le builds

2019-10-29 Thread dwilder
On 2019-10-29 09:52, Ilya Maximets wrote: On 28.10.2019 22:22, David Wilder wrote: Add support for travis-ci ppc64le builds. - Updated matrix in .travis.yml to include a ppc64le build. - Added support to install packages needed by specific architectures. To keep the total build time at an

Re: [ovs-dev] [PATCH ] travis: support ppc64le builds

2019-10-29 Thread Ilya Maximets
On 28.10.2019 22:22, David Wilder wrote: Add support for travis-ci ppc64le builds. - Updated matrix in .travis.yml to include a ppc64le build. - Added support to install packages needed by specific architectures. To keep the total build time at an acceptable level only a single build job is

[ovs-dev] Cómo hacer una presentación profesional

2019-10-29 Thread Herramientas de presentación de proyectos
Me da mucho gusto saludarte. Es, para mí, un placer poder invitarte a nuestro Curso en Línea "¿Cómo presentar resultados a nivel profesional?", que se estará llevando a cabo el día Miércoles 13 de Noviembre con un horario de 10:00 a 14:00 hrs. (hora del centro de México) Presentar un proyecto

Re: [ovs-dev] [PATCHv5] netdev-linux: Detect numa node id.

2019-10-29 Thread Ilya Maximets
On 23.10.2019 23:08, William Tu wrote: The patch detects the numa node id from the name of the netdev, by reading the '/sys/class/net//device/numa_node'. If not available, ex: virtual device, or any error happens, return numa id 0. Currently only the afxdp netdev type uses it, other linux

Re: [ovs-dev] [PATCH ovn] Fix system-ovn test failures

2019-10-29 Thread Numan Siddique
On Tue, Oct 29, 2019 at 8:16 PM Russell Bryant wrote: > > Thanks, I just hit this and the patch fixes it for me. > > Acked-by: Russell Bryant Thanks for the reviews. I applied this patch to master. Numan > > On Tue, Oct 29, 2019 at 9:56 AM Han Zhou wrote: > > > > Acked-by: hz...@ovn.org > >

Re: [ovs-dev] [PATCHv2] netdev-afxdp: Enable loading XDP program.

2019-10-29 Thread Eelco Chaudron
See comments inline… On 5 Oct 2019, at 2:12, William Tu wrote: Now netdev-afxdp always forwards all packets to userspace because it is using libbpf's default XDP program, see 'xsk_load_xdp_prog'. There are some cases when users want to keep packets in kernel instead of sending to userspace,

[ovs-dev] [PATCH ovn] ovn-controller: Fix use of dangling pointers in I-P runtime_data.

2019-10-29 Thread Dumitru Ceara
The incremental processing engine might stop a run before the en_runtime_data node is processed. In such cases the ed_runtime_data fields might contain pointers to already deleted SB records. For example, if a port binding corresponding to a patch port is removed from the SB database and the

Re: [ovs-dev] [PATCH ovn] Fix system-ovn test failures

2019-10-29 Thread Russell Bryant
Thanks, I just hit this and the patch fixes it for me. Acked-by: Russell Bryant On Tue, Oct 29, 2019 at 9:56 AM Han Zhou wrote: > > Acked-by: hz...@ovn.org > > On Tue, Oct 29, 2019 at 5:26 AM wrote: > > > From: Numan Siddique > > > > The commit b740928656a1("testsuite: Use ovn-macros instead

Re: [ovs-dev] [PATCH ovn] Fix system-ovn test failures

2019-10-29 Thread Han Zhou
Acked-by: hz...@ovn.org On Tue, Oct 29, 2019 at 5:26 AM wrote: > From: Numan Siddique > > The commit b740928656a1("testsuite: Use ovn-macros instead of > ofproto-macros.") > missed updating the system test suite files to include ovn-macros.at. This > patch adds it. > > CC: Han Zhou >

Re: [ovs-dev] [PATCH v2] dpif-netdev: log rxq assignment in isolated pmd

2019-10-29 Thread Gowrishankar Muthukrishnan
Could this patch be reviewed please. Thanks, Gowrishankar On Tue, Oct 22, 2019 at 3:06 PM Gowrishankar Muthukrishnan < gmuth...@redhat.com> wrote: > There is no log about isolated rxq assignment in a pmd today, which > sometimes could be useful to trace rxq/pmd pinning, when debugging > with

[ovs-dev] [PATCH 1/1] ovsdb_execute_mutate: removed unused ovsdb_row pointer variable

2019-10-29 Thread Damijan Skvarc
Signed-off-by: Damijan Skvarc --- ovsdb/execution.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ovsdb/execution.c b/ovsdb/execution.c index c55a0b7..f2cf3d7 100644 --- a/ovsdb/execution.c +++ b/ovsdb/execution.c @@ -562,7 +562,6 @@ ovsdb_execute_mutate(struct ovsdb_execution *x, struct

Re: [ovs-dev] [PATCH v6 ovn] Add DNSSL support to OVN

2019-10-29 Thread Numan Siddique
On Tue, Oct 29, 2019 at 5:49 PM Lorenzo Bianconi wrote: > > Introduce the possibility to specify a DNSSL option to Router > Advertisement packets. DNS Search list can be specified using > 'dnssl' tag in the ipv6_ra_configs column of logical router > port table > > Signed-off-by: Lorenzo Bianconi

Re: [ovs-dev] [PATCH v5 ovn] Add DNSSL support to OVN

2019-10-29 Thread Numan Siddique
On Tue, Oct 29, 2019 at 4:39 PM Lorenzo Bianconi wrote: > > > On Tue, Oct 29, 2019 at 3:29 PM Lorenzo Bianconi > > wrote: > > > > > > Introduce the possibility to specify a DNSSL option to Router > > > Advertisement packets. DNS Search list can be specified using > > > 'dnssl' tag in the

[ovs-dev] [PATCH ovn] Fix system-ovn test failures

2019-10-29 Thread numans
From: Numan Siddique The commit b740928656a1("testsuite: Use ovn-macros instead of ofproto-macros.") missed updating the system test suite files to include ovn-macros.at. This patch adds it. CC: Han Zhou Signed-off-by: Numan Siddique --- tests/system-kmod-testsuite.at | 1 +

[ovs-dev] [PATCH v6 ovn] Add DNSSL support to OVN

2019-10-29 Thread Lorenzo Bianconi
Introduce the possibility to specify a DNSSL option to Router Advertisement packets. DNS Search list can be specified using 'dnssl' tag in the ipv6_ra_configs column of logical router port table Signed-off-by: Lorenzo Bianconi --- Changes since v5: - add comment describing how domain names are

Re: [ovs-dev] [PATCH] rhel: openvswitch-fedora.spec.in: Fix output redirect to null device

2019-10-29 Thread Simon Horman
On Mon, Oct 28, 2019 at 10:37:44AM +0200, Roi Dayan wrote: > Add missing slash. > > Fixes: 0447019df7c6 ("fedora-spec: added systemd post/postun/pre/preun > sections") > Signed-off-by: Roi Dayan Thanks Roi, I've applied this to master and backported it as far back as branch-2.5. > --- >

Re: [ovs-dev] [PATCH net-next v4 08/10] net: openvswitch: fix possible memleak on destroy flow-table

2019-10-29 Thread Tonghao Zhang
On Tue, Oct 29, 2019 at 3:38 PM Pravin Shelar wrote: > > On Sun, Oct 27, 2019 at 11:49 PM Tonghao Zhang > wrote: > > > > On Thu, Oct 24, 2019 at 3:14 PM Pravin Shelar wrote: > > > > > > On Tue, Oct 22, 2019 at 7:35 PM Tonghao Zhang > > > wrote: > > > > > > > > On Tue, Oct 22, 2019 at 2:58 PM

Re: [ovs-dev] [PATCH ovs v3 2/2] netdev-dpdk: Add dpdkvdpa port

2019-10-29 Thread Noa Levy
> -Original Message- > From: William Tu [mailto:u9012...@gmail.com] > Sent: Monday, October 28, 2019 10:46 PM > To: Noa Levy > Cc: ovs-dev@openvswitch.org; Oz Shlomo ; Majd > Dibbiny ; Ameer Mahagneh > ; Eli Britstein > Subject: Re: [ovs-dev] [PATCH ovs v3 2/2] netdev-dpdk: Add

Re: [ovs-dev] [PATCH v5 ovn] Add DNSSL support to OVN

2019-10-29 Thread Lorenzo Bianconi
> On Tue, Oct 29, 2019 at 3:29 PM Lorenzo Bianconi > wrote: > > > > Introduce the possibility to specify a DNSSL option to Router > > Advertisement packets. DNS Search list can be specified using > > 'dnssl' tag in the ipv6_ra_configs column of logical router > > port table > > > > Signed-off-by:

Re: [ovs-dev] [PATCH v5 ovn] Add DNSSL support to OVN

2019-10-29 Thread Numan Siddique
On Tue, Oct 29, 2019 at 3:29 PM Lorenzo Bianconi wrote: > > Introduce the possibility to specify a DNSSL option to Router > Advertisement packets. DNS Search list can be specified using > 'dnssl' tag in the ipv6_ra_configs column of logical router > port table > > Signed-off-by: Lorenzo Bianconi

[ovs-dev] [PATCH v5 ovn] Add DNSSL support to OVN

2019-10-29 Thread Lorenzo Bianconi
Introduce the possibility to specify a DNSSL option to Router Advertisement packets. DNS Search list can be specified using 'dnssl' tag in the ipv6_ra_configs column of logical router port table Signed-off-by: Lorenzo Bianconi --- Changes since v4: - update documentation - fix possible array out

Re: [ovs-dev] [PATCH ovs v3 0/2] Introduce dpdkvdpa netdev

2019-10-29 Thread Noa Levy
> -Original Message- > From: Roni Bar Yanai > Sent: Monday, October 28, 2019 10:25 PM > To: Ilya Maximets ; Noa Levy ; > ovs-dev@openvswitch.org > Cc: Oz Shlomo ; Majd Dibbiny > ; Ameer Mahagneh ; Eli > Britstein ; William Tu ; Simon > Horman > Subject: RE: [ovs-dev] [PATCH ovs v3 0/2]

Re: [ovs-dev] [PATCH] lacp: warn transmit failure of lacp pdu

2019-10-29 Thread Gowrishankar Muthukrishnan
Hi Ben, Idea is to log lacp specific tx failure. A one step further as in ofproto_dpif_send_packet has to make the debug info more generic, even though it would cater all of its calling functions. For example, bundle_send_learning_packets reports such tx failures for gratuitous packets. I think,

Re: [ovs-dev] [PATCH ovn] ovndb-servers.ocf: Change from 'openvswitch' to 'ovn' in default vars.

2019-10-29 Thread Numan Siddique
On Tue, Oct 29, 2019 at 1:31 PM Numan Siddique wrote: > > On Mon, Oct 28, 2019 at 10:57 PM Ben Pfaff wrote: > > > > On Mon, Oct 28, 2019 at 10:25:34AM -0700, Ben Pfaff wrote: > > > On Mon, Oct 28, 2019 at 08:04:15PM +0530, num...@ovn.org wrote: > > > > From: Numan Siddique > > > > > > > > CC:

Re: [ovs-dev] [PATCH v4 ovn 2/2] Add DNSSL support to OVN

2019-10-29 Thread Lorenzo Bianconi
> On Mon, Oct 28, 2019 at 8:10 PM Lorenzo Bianconi > wrote: > > > > Introduce the possibility to specify a DNSSL option to Router > > Advertisement packets. DNS Search list can be specified using > > 'dnssl' tag in the ipv6_ra_configs column of logical router > > port table > > > > Signed-off-by:

Re: [ovs-dev] [PATCH ovn] ovndb-servers.ocf: Change from 'openvswitch' to 'ovn' in default vars.

2019-10-29 Thread Numan Siddique
On Mon, Oct 28, 2019 at 10:57 PM Ben Pfaff wrote: > > On Mon, Oct 28, 2019 at 10:25:34AM -0700, Ben Pfaff wrote: > > On Mon, Oct 28, 2019 at 08:04:15PM +0530, num...@ovn.org wrote: > > > From: Numan Siddique > > > > > > CC: Aliasgar Ginwala > > > Signed-off-by: Numan Siddique > > > > Should we

Re: [ovs-dev] [PATCH net-next v4 08/10] net: openvswitch: fix possible memleak on destroy flow-table

2019-10-29 Thread Pravin Shelar
On Sun, Oct 27, 2019 at 11:49 PM Tonghao Zhang wrote: > > On Thu, Oct 24, 2019 at 3:14 PM Pravin Shelar wrote: > > > > On Tue, Oct 22, 2019 at 7:35 PM Tonghao Zhang > > wrote: > > > > > > On Tue, Oct 22, 2019 at 2:58 PM Pravin Shelar wrote: > > > > > > ... > > ... > > > struct sw_flow

Re: [ovs-dev] [PATCH v4 ovn 2/2] Add DNSSL support to OVN

2019-10-29 Thread Numan Siddique
On Mon, Oct 28, 2019 at 8:10 PM Lorenzo Bianconi wrote: > > Introduce the possibility to specify a DNSSL option to Router > Advertisement packets. DNS Search list can be specified using > 'dnssl' tag in the ipv6_ra_configs column of logical router > port table > > Signed-off-by: Lorenzo Bianconi

Re: [ovs-dev] [PATCH v4 ovn 1/2] Add RDNSS support to OVN

2019-10-29 Thread Numan Siddique
On Mon, Oct 28, 2019 at 8:09 PM Lorenzo Bianconi wrote: > > Introduce the possibility to specify a RDNSS option to Router > Advertisement packets. DNS IPv6 address can be specified using > 'rdnss' tag in the ipv6_ra_configs column of logical router > port table > > Acked-by: Mark Michelson >