Re: [ovs-dev] [PATCH] dpif-netdev: Fix unsafe accesses to pmd polling lists.

2019-02-11 Thread Ilya Maximets
On 11.02.2019 22:15, Aaron Conole wrote: > Ilya Maximets writes: > >> All accesses to 'pmd->poll_list' should be guarded by >> 'pmd->port_mutex'. Additionally fixed inappropriate usage >> of 'HMAP_FOR_EACH_SAFE' (hmap doesn't change in a loop) >> and dropped not needed local variable

[ovs-dev] [PATCH v6 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Christian Ehrhardt
DPDK 18.11 builds using the more modern meson build system no more provide the -ldpdk linker script. Instead it is expected to use pkgconfig for linker options as well. This change will set DPDK_LIB from pkg-config (if pkg-config was available) and since that already carries the whole-archive

[ovs-dev] [PATCH v6 0/1] fix build with DPDK 18.11 without -ldpdk

2019-02-11 Thread Christian Ehrhardt
DPDK 18.11 can be built using the more modern meson build system. In that case it no more provides the -ldpdk linker script. Instead it is expected to use pkgconfig for linker options as well. FYI here a build log on Ubuntu 19.04 with the three patches applied:

Re: [ovs-dev] [PATCH v5 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Christian Ehrhardt
On Tue, Feb 12, 2019 at 2:52 AM Ben Pfaff wrote: > > On Mon, Feb 11, 2019 at 08:36:47PM +0100, Christian Ehrhardt wrote: > > DPDK 18.11 builds using the more modern meson build system no more > > provide the -ldpdk linker script. Instead it is expected to use > > pkgconfig for linker options as

Re: [ovs-dev] Updated Quotation

2019-02-11 Thread Marie Bernard
Good Morning. Kindly send us an updated quotation. If the attached still valid, please let us know. Thanks. Cordialement, Best Regards ___ Marie GERBAUD BERNARD Assistante Export Tel : +33 1 64 86 27 86 Fax : +33 1 69 10 65 49 E-mail :

Re: [ovs-dev] [patch v4 2/2] conntrack: Exclude l2 padding in 'conn_key_extract()'.

2019-02-11 Thread Ben Pfaff
On Mon, Feb 04, 2019 at 04:23:07PM -0800, Darrell Ball wrote: > 'conn_key_extract()' in userspace conntrack is including L2 > (Ethernet) pad bytes for both L3 and L4 sizes. One problem is > any packet with non-zero L2 padding can incorrectly fail L4 > checksum validation. > > This patch fixes

Re: [ovs-dev] [RFC v3 4/5] ovn: Support OVS action 'check_pkt_larger' in OVN

2019-02-11 Thread Ben Pfaff
On Thu, Jan 10, 2019 at 11:31:25PM +0530, nusid...@redhat.com wrote: > From: Numan Siddique > > Previous commit added a new OVS action 'check_pkt_larger'. This > patch supports that action in OVN. The syntax to use this would be > > reg0[0] = check_pkt_larger(LEN) > > Upcoming commit will make

Re: [ovs-dev] [RFC v3 3/5] ovn: Add a new OVN field icmp4.frag_mtu

2019-02-11 Thread Ben Pfaff
On Thu, Jan 10, 2019 at 11:30:58PM +0530, nusid...@redhat.com wrote: > From: Numan Siddique > > In order to support OVN specific fields (which are not yet > supported in OpenvSwitch to set or modify values) a generic > OVN field support is added in this patch. These OVN fields are > expected to

Re: [ovs-dev] [RFC v3 2/5] Add a new OVS action check_pkt_larger

2019-02-11 Thread Ben Pfaff
On Thu, Jan 10, 2019 at 11:30:33PM +0530, nusid...@redhat.com wrote: > From: Numan Siddique > > This patch adds a new action 'check_pkt_larger' which checks if the > packet is larger than the given size and stores the result in the > destination register. Thanks. This patch renumbers

Re: [ovs-dev] monitor.c: Fix crash when monitor condition adds new columns.

2019-02-11 Thread 0-day Robot
Bleep bloop. Greetings Han Zhou, 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 110 characters long (recommended limit is 79) ERROR: C99 style comment #171 FILE:

Re: [ovs-dev] [RFC v3 1/5] datapath: Add a new action check_pkt_len

2019-02-11 Thread Ben Pfaff
Greg, I recommend that you take a look at this one. (More commentary below.) On Thu, Jan 10, 2019 at 11:29:48PM +0530, nusid...@redhat.com wrote: > From: Numan Siddique > > [Please note, this patch is submitted as RFC in ovs-dev ML to > get feedback before submitting to netdev ML] > > This

[ovs-dev] [PATCH v2] monitor.c: Fix crash when monitor condition adds new columns.

2019-02-11 Thread Han Zhou
From: Han Zhou The OVSDB conditional monitor implementation allows many clients to share same copy of monitored data if the clients are sharing same tables and columns being monitored, while they can have different monitor conditions. In monitor conditions they can have different columns which

Re: [ovs-dev] [PATCH][v2] conntrack: Remove unnecessary check in process_ftp_ctl_v4

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 10:52:54AM +0800, Li RongQing wrote: > It has been assured that both first and second int from ftp > command are not bigger than 255, so their combination(first > int << 8 +second int) must not bigger than 65535 > > Co-authored-by: Wang Li > Signed-off-by: Wang Li >

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

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 08:09:59PM +, Venugopal Iyer wrote: > Of course we want users to upgrade the entire system. We just need to > make sure that it's possible to upgrade one piece at a time in an order > that ensures that the system isn't broken by a partial upgrade. The > specified

Re: [ovs-dev] [PATCH 0/2] ovs-ctl: Permit to specify additional options

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 07:55:51PM +0100, Timothy Redaelli wrote: > Currently using ovs-ctl is not possible to specify additional options > for ovs-vswitchd and ovsdb-server (for example to specify a different > loglevel during daemon startup). > > This series adds --ovs-vswitchd-options and

Re: [ovs-dev] [PATCH v5 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 08:36:47PM +0100, Christian Ehrhardt wrote: > DPDK 18.11 builds using the more modern meson build system no more > provide the -ldpdk linker script. Instead it is expected to use > pkgconfig for linker options as well. > > This change will set DPDK_LIB from pkg-config (if

Re: [ovs-dev] [PATCH] netlink: added check to prevent netlink attribute overflow

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 04:23:57PM -0800, Toms Atteka wrote: > If enough large input is passed to odp_actions_from_string it can > cause netlink attribute to overflow. > ovs_assert was added just before the problematic code so it could > be debugged faster in similar cases if they would arise.

Re: [ovs-dev] [patch v12 8/8] Userspace datapath: Add fragmentation handling.

2019-02-11 Thread Ben Pfaff
On Sun, Feb 10, 2019 at 06:56:30PM -0800, Darrell Ball wrote: > Fragmentation handling is added for supporting conntrack. > Both v4 and v6 are supported. > > After discussion with several people, I decided to not store > configuration state in the database to be more consistent with > the kernel

Re: [ovs-dev] dpif-netdev:fix reload pmd's dead lock

2019-02-11 Thread Lilijun (Jerry, Cloud Networking)
Ok, I got it, thanks for your explanation. > -Original Message- > From: Ilya Maximets [mailto:i.maxim...@samsung.com] > Sent: Monday, February 11, 2019 9:55 PM > To: Lilijun (Jerry, Cloud Networking) ; Stokes, Ian > ; d...@openvswitch.org > Subject: Re: [ovs-dev] dpif-netdev:fix reload

[ovs-dev] [PATCH] netlink: added check to prevent netlink attribute overflow

2019-02-11 Thread Toms Atteka
If enough large input is passed to odp_actions_from_string it can cause netlink attribute to overflow. ovs_assert was added just before the problematic code so it could be debugged faster in similar cases if they would arise. Check for buffer size was added to prevent entering this function and

Re: [ovs-dev] [patch v12 7/8] dp-packet: Add 'do_not_steal' packet batch flag.

2019-02-11 Thread Darrell Ball
sorry, one line of this patch was placed in the wrong function. The following incremental relocates it to the proper function. dball@ubuntu:~/openvswitch/ovs$ git diff diff --git a/lib/dp-packet.h b/lib/dp-packet.h index c4ecd2d..dae197e 100644 --- a/lib/dp-packet.h +++ b/lib/dp-packet.h @@

Re: [ovs-dev] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread 0-day Robot
Bleep bloop. Greetings Christian Ehrhardt, 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: Failed to merge in the changes. Patch failed at 0001 acinclude: Also use LIBS from dpkg

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

2019-02-11 Thread Venugopal Iyer
From: Ben Pfaff Sent: Thursday, February 7, 2019 6:53 PM To: Venugopal Iyer Cc: Guru Shetty; Leonid Grossman; d...@openvswitch.org Subject: Re: [ovs-discuss] [ovs-dev] Geneve remote_ip as flow for OVN hosts On Thu, Feb 07, 2019 at 08:10:48PM +,

[ovs-dev] [PATCH v5 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Christian Ehrhardt
DPDK 18.11 builds using the more modern meson build system no more provide the -ldpdk linker script. Instead it is expected to use pkgconfig for linker options as well. This change will set DPDK_LIB from pkg-config (if pkg-config was available) and since that already carries the whole-archive

[ovs-dev] [PATCH v5 0/1] fix build with DPDK 18.11 without -ldpdk

2019-02-11 Thread Christian Ehrhardt
DPDK 18.11 can be built using the more modern meson build system. In that case it no more provides the -ldpdk linker script. Instead it is expected to use pkgconfig for linker options as well. FYI here a build log on Ubuntu 19.04 with the three patches applied:

Re: [ovs-dev] [PATCH] dpif-netdev: Fix unsafe accesses to pmd polling lists.

2019-02-11 Thread Aaron Conole
Ilya Maximets writes: > All accesses to 'pmd->poll_list' should be guarded by > 'pmd->port_mutex'. Additionally fixed inappropriate usage > of 'HMAP_FOR_EACH_SAFE' (hmap doesn't change in a loop) > and dropped not needed local variable 'proc_cycles'. > > CC: Nitin Katiyar > Fixes: 5bf84282482a

[ovs-dev] [PATCH 2/2] rhel: Add an example to specify custom options

2019-02-11 Thread Timothy Redaelli
Add an example to specify custom options of ovs-vswitchd and ovsdb-server. In the example, the log level for file and console destinations is set to dbg. Signed-off-by: Timothy Redaelli --- rhel/usr_share_openvswitch_scripts_systemd_sysconfig.template | 4 1 file changed, 4 insertions(+)

[ovs-dev] [PATCH 1/2] ovs-ctl: Permit to specify additional options

2019-02-11 Thread Timothy Redaelli
Currently using ovs-ctl is not possible to specify additional options for ovs-vswitchd and ovsdb-server (for example to specify a different loglevel during daemon startup). This patch adds --ovs-vswitchd-options and --ovsdb-server-options options to ovs-ctl in order to specify the additional

[ovs-dev] [PATCH 0/2] ovs-ctl: Permit to specify additional options

2019-02-11 Thread Timothy Redaelli
Currently using ovs-ctl is not possible to specify additional options for ovs-vswitchd and ovsdb-server (for example to specify a different loglevel during daemon startup). This series adds --ovs-vswitchd-options and --ovsdb-server-options options to ovs-ctl in order to specify the additional

Re: [ovs-dev] [PATCH] dpif-netdev: Fix unsafe accesses to pmd polling lists.

2019-02-11 Thread Kevin Traynor
On 02/11/2019 05:34 PM, Ilya Maximets wrote: > All accesses to 'pmd->poll_list' should be guarded by > 'pmd->port_mutex'. Additionally fixed inappropriate usage > of 'HMAP_FOR_EACH_SAFE' (hmap doesn't change in a loop) > and dropped not needed local variable 'proc_cycles'. > > CC: Nitin Katiyar

Re: [ovs-dev] [PATCH] dpif-netdev: Add thread safety annotation to sorted_poll_list.

2019-02-11 Thread Kevin Traynor
On 02/11/2019 05:35 PM, Ilya Maximets wrote: > 'sorted_poll_list()' uses the 'pmd->poll_list' that should be > guarded by 'pmd->port_mutex'. > > Signed-off-by: Ilya Maximets > --- LGTM Acked-by: Kevin Traynor > lib/dpif-netdev.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git

[ovs-dev] Inversez votre Diabète Grâce au Démarrage Assisté de votre Pancréas

2019-02-11 Thread Inversez votre DiabEte
Salut, Est-ce que votre diab�te vous interdit vos plats pr�f�r�s ? Voici une nouvelle nettement mieux que bonne Vous devez prendre connaissance de ceci : � Je croyais ne plus jamais pouvoir manger ce que j 19aime le plus. . . . . .puis j 19ai d�couvert le secret pour inverser mon

Re: [ovs-dev] [RFC] OVS robot discussion - check API integration

2019-02-11 Thread Thomas Monjalon
11/02/2019 18:03, Ben Pfaff: > On Mon, Feb 11, 2019 at 10:24:01AM -0500, Aaron Conole wrote: > > I'm following up on a discussion where we briefly talked about adding > > a 'check' to OVS patch series during the OVS Conference. 'Check' is > > what the patchwork project provides to show that

[ovs-dev] [PATCH] dpif-netdev: Add thread safety annotation to sorted_poll_list.

2019-02-11 Thread Ilya Maximets
'sorted_poll_list()' uses the 'pmd->poll_list' that should be guarded by 'pmd->port_mutex'. Signed-off-by: Ilya Maximets --- lib/dpif-netdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c index 914b2bb8b..34f2d2b07 100644 --- a/lib/dpif-netdev.c +++

[ovs-dev] [PATCH] dpif-netdev: Fix unsafe accesses to pmd polling lists.

2019-02-11 Thread Ilya Maximets
All accesses to 'pmd->poll_list' should be guarded by 'pmd->port_mutex'. Additionally fixed inappropriate usage of 'HMAP_FOR_EACH_SAFE' (hmap doesn't change in a loop) and dropped not needed local variable 'proc_cycles'. CC: Nitin Katiyar Fixes: 5bf84282482a ("Adding support for PMD auto load

Re: [ovs-dev] [PATCH v4 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 11:37:25AM +0100, Christian Ehrhardt wrote: > On Mon, Feb 11, 2019 at 11:06 AM Luca Boccassi wrote: > > > > On Mon, 2019-02-11 at 07:59 +0100, Christian Ehrhardt wrote: > > > On Sun, Feb 10, 2019 at 5:53 PM Ben Pfaff wrote: > > > > > > > > On Thu, Feb 07, 2019 at

Re: [ovs-dev] [RFC 1/3] dpdk: Unify passing of DPDK EAL arguments.

2019-02-11 Thread Ilya Maximets
On 08.02.2019 13:36, Kevin Traynor wrote: > Hi Ilya, > > Thanks for raising this and explaining in detail so it can be discussed. Thanks for sharing your thoughts. > Comments below, > > On 02/01/2019 01:11 PM, Ilya Maximets wrote: >> This patch deprecates the usage of current configuration

Re: [ovs-dev] [RFC] OVS robot discussion - check API integration

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 10:24:01AM -0500, Aaron Conole wrote: > I'm following up on a discussion where we briefly talked about adding > a 'check' to OVS patch series during the OVS Conference. 'Check' is > what the patchwork project provides to show that certain tests have been > performed. It

Re: [ovs-dev] [PATCH] ovn: change load balancer references to weak in NB schema

2019-02-11 Thread Ben Pfaff
Thanks Daniel (and Lucas). I applied this to master. On Mon, Feb 11, 2019 at 04:13:39PM +, Lucas Alvares Gomes wrote: > Thanks Daniel,I agree it makes things easier for the integration with > OpenStack. > On Mon, Feb 11, 2019 at 4:07 PM Daniel Alvarez wrote: > > > > When a load balancer is

Re: [ovs-dev] [PATCH] ovs-lib.in: Cleanup old socket and pidfiles in stop_daemon

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 05:22:53PM +0100, Timothy Redaelli wrote: > Currently if a client crashes (signal 11) the unix socket (.ctl) and the > pidfile may not be deleted when you use ovs-ctl stop or restart. > > Moreover since ovs-appctl is used on a closed socket some warnings are > printed. >

Re: [ovs-dev] [PATCH 0/8] travis: Fix equal distcheck runs.

2019-02-11 Thread Ben Pfaff
On Fri, Feb 08, 2019 at 07:48:52PM +0300, Ilya Maximets wrote: > All the distcheck runs in Travis are equal. Only compiler changes. > This patch set targeted to actually run testsuite with desired > build options. See patch #4 for details. Thank you! I applied this series to master.

Re: [ovs-dev] [PATCH v2] checkpatch: Normalize exit code for Windows

2019-02-11 Thread Ben Pfaff
On Mon, Feb 11, 2019 at 05:57:27PM +0200, Alin Gabriel Serdean wrote: > Using python `sys.exit(-1)` on Windows produces mixed results. > Let's take the following results from different shells: > CMD > >python -c "import sys; sys.exit(-1)" & echo %errorlevel% > 1 > MSYS > $ python -c "import sys;

[ovs-dev] [PATCH] ovs-lib.in: Cleanup old socket and pidfiles in stop_daemon

2019-02-11 Thread Timothy Redaelli
Currently if a client crashes (signal 11) the unix socket (.ctl) and the pidfile may not be deleted when you use ovs-ctl stop or restart. Moreover since ovs-appctl is used on a closed socket some warnings are printed. This commit deletes the pidfile and the unix socket then returns without

Re: [ovs-dev] [PATCH] ovn: change load balancer references to weak in NB schema

2019-02-11 Thread Lucas Alvares Gomes
Thanks Daniel,I agree it makes things easier for the integration with OpenStack. On Mon, Feb 11, 2019 at 4:07 PM Daniel Alvarez wrote: > > When a load balancer is added to multiple logical switches > and routers it has be to be removed from all of them before > being able to delete due to the

[ovs-dev] [PATCH] ovn: change load balancer references to weak in NB schema

2019-02-11 Thread Daniel Alvarez
When a load balancer is added to multiple logical switches and routers it has be to be removed from all of them before being able to delete due to the current 'strong' reference in the NB schema. By changing it to 'weak', users can simply remove the load balancer without having to remove all the

Re: [ovs-dev] [PATCH] checkpatch: Normalize exit code for Windows

2019-02-11 Thread aserdean
> De la: ovs-dev-boun...@openvswitch.org boun...@openvswitch.org> În numele Aaron Conole > Trimis: Tuesday, February 5, 2019 10:39 PM > Către: Alin Gabriel Serdean > Cc: d...@openvswitch.org > Subiect: Re: [ovs-dev] [PATCH] checkpatch: Normalize exit code for Windows > > Alin Gabriel Serdean

[ovs-dev] Detectar Fraudes - Control Interno

2019-02-11 Thread Detección oportuna de fraudes.
Cursos escenciales - Webinar Interactivo – Miércoles 20 de Febrero Guía de Auditoría y Control Interno para Detectar Fraudes Nuestro webinar funciona como una guía para que el participante revise los conceptos clave del Control Interno y la Auditoría para la prevención de escenarios que

[ovs-dev] [PATCH v2] checkpatch: Normalize exit code for Windows

2019-02-11 Thread Alin Gabriel Serdean
Using python `sys.exit(-1)` on Windows produces mixed results. Let's take the following results from different shells: CMD >python -c "import sys; sys.exit(-1)" & echo %errorlevel% 1 MSYS $ python -c "import sys; sys.exit(-1)" && echo $? 0 WSL $ python -c "import sys; sys.exit(-1)"; echo $? 255

[ovs-dev] Have needs to retouch your photos?

2019-02-11 Thread Cindy
Do you have needs for retouching your photos? Or do deep etching and masking for your photos, We are the image service provider who can do this for you. Please send photos to start testing, then you cam judge the quality of our service. Thanks, Cindy Wesdl Bruchsdal

Re: [ovs-dev] [RFC 1/3] dpdk: Unify passing of DPDK EAL arguments.

2019-02-11 Thread Ilya Maximets
On 07.02.2019 19:56, Flavio Leitner wrote: > On Wed, Feb 06, 2019 at 11:33:04AM +0300, Ilya Maximets wrote: >> On 05.02.2019 23:19, Flavio Leitner wrote: >>> On Tue, Feb 05, 2019 at 06:43:08PM +0300, Ilya Maximets wrote: Hi Flavio. Thanks for taking a look. On 05.02.2019 15:38,

[ovs-dev] [RFC] OVS robot discussion - check API integration

2019-02-11 Thread Aaron Conole
I'm following up on a discussion where we briefly talked about adding a 'check' to OVS patch series during the OVS Conference. 'Check' is what the patchwork project provides to show that certain tests have been performed. It is made up of a name, a status, and a URL. Some of the projects in the

Re: [ovs-dev] [PATCH v2] lib/tc: Support optional tunnel id

2019-02-11 Thread Simon Horman
On Mon, Feb 11, 2019 at 11:25:28AM +, Roi Dayan wrote: > > > On 11/02/2019 12:13, Simon Horman wrote: > > On Mon, Feb 11, 2019 at 09:57:10AM +, Roi Dayan wrote: > >> > >> > >> On 11/02/2019 11:11, Simon Horman wrote: > >>> On Sun, Feb 10, 2019 at 08:04:39AM +, Roi Dayan wrote: >

[ovs-dev] [PATCH V4 2/3] acinclude: Include libverbs and libmlx4 when needed

2019-02-11 Thread Eli Britstein
DPDK 18.11 uses libverbs and libmlx4 when MLX4 PMD is enabled. This commit makes OVS to link to libverbs and libmlx4 when MLX4 PMD is enabled on DPDK. Signed-off-by: Eli Britstein Reviewed-by: Asaf Penso --- acinclude.m4 | 14 ++ 1 file changed, 14 insertions(+) diff --git

[ovs-dev] [PATCH V4 1/3] acinclude: Include libverbs and libmlx5 when needed

2019-02-11 Thread Eli Britstein
DPDK 18.11 uses libverbs and libmlx5 when MLX5 PMD is enabled. This commit makes OVS to link to libverbs and libmlx5 when MLX5 PMD is enabled on DPDK. Signed-off-by: Eli Britstein Reviewed-by: Shahaf Shuler Reviewed-by: Asaf Penso --- acinclude.m4 | 22 ++ 1 file changed,

[ovs-dev] [PATCH V4 0/3] Include libverbs and libmlx4/5 when needed

2019-02-11 Thread Eli Britstein
This patch set automatically links with the necessary libraries for MLX4/5 DPDK PMDs. Patch 1 automatically links with the necessary libraries for MLX5 PMD Patch 2 automatically links with the necessary libraries for MLX4 PMD Patch 3 removes unnecessary define previously done for automatically

Re: [ovs-dev] [PATCH v2] lib/tc: Support optional tunnel id

2019-02-11 Thread Roi Dayan
On 11/02/2019 12:13, Simon Horman wrote: > On Mon, Feb 11, 2019 at 09:57:10AM +, Roi Dayan wrote: >> >> >> On 11/02/2019 11:11, Simon Horman wrote: >>> On Sun, Feb 10, 2019 at 08:04:39AM +, Roi Dayan wrote: On 04/02/2019 15:20, Roi Dayan wrote: > Hi Simon,

[ovs-dev] Fwd: Hello

2019-02-11 Thread Yakubu mark via dev
  Good day how are you and your family doing can you hold a deal Добрый день как дела у вас и вашей семьи можете ли вы заключить сделку? С уважением,  ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH v4 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Christian Ehrhardt
On Mon, Feb 11, 2019 at 11:06 AM Luca Boccassi wrote: > > On Mon, 2019-02-11 at 07:59 +0100, Christian Ehrhardt wrote: > > On Sun, Feb 10, 2019 at 5:53 PM Ben Pfaff wrote: > > > > > > On Thu, Feb 07, 2019 at 12:46:40PM +0100, Christian Ehrhardt wrote: > > > > DPDK 18.11 builds using the more

Re: [ovs-dev] [PATCH v2] lib/tc: Support optional tunnel id

2019-02-11 Thread Simon Horman
On Mon, Feb 11, 2019 at 09:57:10AM +, Roi Dayan wrote: > > > On 11/02/2019 11:11, Simon Horman wrote: > > On Sun, Feb 10, 2019 at 08:04:39AM +, Roi Dayan wrote: > >> > >> > >> On 04/02/2019 15:20, Roi Dayan wrote: > >>> Hi Simon, > >>> > >>> I did some checks and think the

Re: [ovs-dev] [PATCH v4 1/1] acinclude: Also use LIBS from dpkg pkg-config

2019-02-11 Thread Luca Boccassi
On Mon, 2019-02-11 at 07:59 +0100, Christian Ehrhardt wrote: > On Sun, Feb 10, 2019 at 5:53 PM Ben Pfaff wrote: > > > > On Thu, Feb 07, 2019 at 12:46:40PM +0100, Christian Ehrhardt wrote: > > > DPDK 18.11 builds using the more modern meson build system no > > > more > > > provide the -ldpdk

Re: [ovs-dev] [PATCH v2] lib/tc: Support optional tunnel id

2019-02-11 Thread Roi Dayan
On 11/02/2019 11:11, Simon Horman wrote: > On Sun, Feb 10, 2019 at 08:04:39AM +, Roi Dayan wrote: >> >> >> On 04/02/2019 15:20, Roi Dayan wrote: >>> Hi Simon, >>> >>> I did some checks and think the correct fix is to offload exact match. >>> if key is partial we can ignore

Re: [ovs-dev] [PATCH v2] lib/tc: Support optional tunnel id

2019-02-11 Thread Simon Horman
On Sun, Feb 10, 2019 at 08:04:39AM +, Roi Dayan wrote: > > > On 04/02/2019 15:20, Roi Dayan wrote: > > Hi Simon, > > > > I did some checks and think the correct fix is to offload exact match. > > if key is partial we can ignore the mask and offload exact match and > > it

[ovs-dev] 答复: [PATCH] netdev-dpdk: shrink critical region under tx_q[qid].tx_lock

2019-02-11 Thread Li,Rongqing
> -邮件原件- > 发件人: Ian Stokes [mailto:ian.sto...@intel.com] > 发送时间: 2019年2月6日 23:34 > 收件人: Li,Rongqing ; d...@openvswitch.org > 主题: Re: [ovs-dev] [PATCH] netdev-dpdk: shrink critical region under > tx_q[qid].tx_lock > > On 1/31/2019 2:47 AM, Li RongQing wrote: > >