[ovs-dev] [PATCH 3/3] datapath: use KARCH when building linux datapath modules

2018-11-29 Thread Yousong Zhou
From: Yousong Zhou Signed-off-by: Yousong Zhou --- datapath/linux/Makefile.main.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datapath/linux/Makefile.main.in b/datapath/linux/Makefile.main.in index 6e245c70c..328bbfbb6 100644 --- a/datapath/linux/Makefile.main.in

[ovs-dev] [PATCH 1/3] ovs-ctl: fallback to "uname -n" for fetching hostname

2018-11-29 Thread Yousong Zhou
From: Yousong Zhou The command "hostname" is not available in OpenWrt by default. Strace result of hostname-3.13 on centos7 shows that bare "hostname" command calls uname() to fetch node name. Signed-off-by: Yousong Zhou --- utilities/ovs-ctl.in | 2 +- 1 file changed, 1 insertion(+), 1

[ovs-dev] [PATCH 2/3] ovs-save: compatible with busybox ip command

2018-11-29 Thread Yousong Zhou
From: Yousong Zhou Busybox ip command will have exit code 1 for `ip -V` or `ip help` etc., use `ip link show` to cover both iproute2 and busybox ip command Signed-off-by: Yousong Zhou --- utilities/ovs-save | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/ovs-save

[ovs-dev] [PATCH 0/3] build: patches from OpenWrt

2018-11-29 Thread Yousong Zhou
There are quite a few accumulated patches when packaging Open vSwitch for OpenWrt. These three included here are what I think should be ready for upstream inclusion. Other patches can be found at link [1]. Some of then is probably OpenWrt specific and not of interest to the wider community of

[ovs-dev] Excel - Estados Financieros

2018-11-29 Thread Importante
¡Taller Práctico - Innova learn! Nuestro webinar le permitirá al participante realizar un análisis profundo de la situación económica y financiera de su organización en un momento determinado así como aplicar las principales herramientas de análisis e interpretación de los indicadores

[ovs-dev] [PATCH v1] ofctl.man: Minor change to correct the "out_group" field usage text.

2018-11-29 Thread Ashish Varma
Right now the man page of ovs-ofctl has "out_group=port". Correcting the output to group instead of port. Signed-off-by: Ashish Varma --- utilities/ovs-ofctl.8.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/ovs-ofctl.8.in b/utilities/ovs-ofctl.8.in index

Re: [ovs-dev] [patch v2 5/5] conntrack: Optimize recirculations.

2018-11-29 Thread Aaron Conole
Darrell Ball writes: > On Wed, Nov 28, 2018 at 1:59 PM Aaron Conole wrote: > > Darrell Ball writes: > > > In most cases, recirculations through conntrack can be much less costly. > > > > Signed-off-by: Darrell Ball > > --- > > lib/conntrack.c | 50

Re: [ovs-dev] [patch v2 5/5] conntrack: Optimize recirculations.

2018-11-29 Thread Darrell Ball
On Wed, Nov 28, 2018 at 1:59 PM Aaron Conole wrote: > Darrell Ball writes: > > > In most cases, recirculations through conntrack can be much less costly. > > > > Signed-off-by: Darrell Ball > > --- > > lib/conntrack.c | 50 +++--- > > lib/packets.h

[ovs-dev] [PATCH] unixctl: Avoid 100% CPU for slowly processed requests with another queued.

2018-11-29 Thread Ben Pfaff
If another request came in on a particular connection while the previous request was still being processed, unixctl_server_wait() would wake up the main loop but unixctl_server_run() wouldn't read the request, resulting in 100% CPU use. I doubt whether this is a real problem because it's unusual

Re: [ovs-dev] [ovs-discuss] Geneve remote_ip as flow for OVN hosts

2018-11-29 Thread venugopal iyer via dev
Sorry for the resend, I am not sure how the pictures will render in the text doc, so am attaching the PDF too. thanks, -venu On Thursday, November 29, 2018, 9:26:54 AM PST, venugopal iyer wrote: Thanks, Ben. Sorry for the delay. Please find attached a draft design proposal and let

Re: [ovs-dev] [ovs-discuss] Geneve remote_ip as flow for OVN hosts

2018-11-29 Thread venugopal iyer via dev
Thanks, Ben. Sorry for the delay. Please find attached a draft design proposal and let me know your comments etc. I did some quick prototyping to  check  for  feasibility too;  I can share that, if it helps. Note, the document is a draft and, I admit, there might be  things that I haven't

Re: [ovs-dev] [PATCH] tests: keep some datapath parsing tests from hanging

2018-11-29 Thread Scott Cheloha
On Thu, Nov 29, 2018 at 11:11:31AM -0500, Aaron Conole wrote: > Hi Scott, > > Scott Cheloha writes: > > > The arguments to sed(1) need to be on the same line in the shell > > script or it will just sit there awaiting input. > > > > Signed-off-by: Scott Cheloha > > --- > > > > This is my first

Re: [ovs-dev] [v3 dpdk-latest 2/3] netdev-dpdk: Replace rte_eth_dev_attach/detach.

2018-11-29 Thread Kevin Traynor
On 11/29/2018 09:37 AM, Ophir Munk wrote: > Hi Ian, Kevin, > dpdk 18.11 was officially released. Can you please inform what are the plans > for merging these series into dpdk-latest and dpdk-hwol branches? Hi Ophir, I have sent a v7 for dpdk-latest to update to 18.11 release. thanks, Kevin. >

[ovs-dev] [v7 dpdk-latest 1/1] dpdk: Update to use DPDK 18.11.

2018-11-29 Thread Kevin Traynor
DEV_RX_OFFLOAD_CRC_STRIP has been removed from DPDK 18.11. DEV_RX_OFFLOAD_KEEP_CRC can now be used to keep the CRC. Use the correct flag and check it is supported. rte_eth_dev_attach/detach have been removed from DPDK 18.11. Replace them with rte_dev_probe/remove. Update docs and travis to use

[ovs-dev] [v7 dpdk-latest 0/1] Update to DPDK 18.11.

2018-11-29 Thread Kevin Traynor
Minimal set of changes to enable OVS to work with DPDK 18.11. v7: - Move docs that were pointing at 17.11 to point at 18.11 (thanks David) v6: - Update to DPDK 18.11.0 - Add docs v5: - fixed typo in tarball extension v4: - Updated travis to point to DPDK 18.11-rc4 tarball - Squashed patches

[ovs-dev] [v7 dpdk-latest 0/1] Update to DPDK 18.11.

2018-11-29 Thread Kevin Traynor
Minimal set of changes to enable OVS to work with DPDK 18.11. v7: - Move docs that were pointing at 17.11 to point at 18.11 (thanks David) v6: - Update to DPDK 18.11.0 - Add docs v5: - fixed typo in tarball extension v4: - Updated travis to point to DPDK 18.11-rc4 tarball - Squashed patches

Re: [ovs-dev] [v3 dpdk-latest 2/3] netdev-dpdk: Replace rte_eth_dev_attach/detach

2018-11-29 Thread Stokes, Ian
> Hi Ian, Kevin, > dpdk 18.11 was officially released. Can you please inform what are the plans > for merging these series into dpdk-latest and dpdk-hwol branches? > Once merged - I would appreciate having the representor patches reviewed > (after being rebased). > Thanks for Raising this

Re: [ovs-dev] [PATCH] tests: keep some datapath parsing tests from hanging

2018-11-29 Thread Aaron Conole
Hi Scott, Scott Cheloha writes: > The arguments to sed(1) need to be on the same line in the shell > script or it will just sit there awaiting input. > > Signed-off-by: Scott Cheloha > --- > > This is my first submission so I'm not sure if I'm doing this correctly. > > tests/odp.at | 12

Re: [ovs-dev] [v3 dpdk-latest 2/3] netdev-dpdk: Replace rte_eth_dev_attach/detach.

2018-11-29 Thread Ophir Munk
Hi Ian, Kevin, dpdk 18.11 was officially released. Can you please inform what are the plans for merging these series into dpdk-latest and dpdk-hwol branches? Once merged - I would appreciate having the representor patches reviewed (after being rebased). Regards, Ophir -Original