Re: [ovs-dev] (no subject)

2017-07-24 Thread Giessler, Adam
This is to inform you that you have won a prize money of FIVE MILLION DOLLARS ($5,000,000.00 USD) for the 2017 Edition Lottery which is organized by UNITED NATIONS ONLINE PROMO, collects all the email addresses of people that are active online in Bangladesh, among the millions that subscribed

[ovs-dev] [PATCH] tc: Add SCTP support

2017-07-24 Thread Roi Dayan
From: Vlad Buslov Imlement SCTP source and destination ports support for flower Signed-off-by: Vlad Buslov Reviewed-by: Paul Blakey Acked-by: Roi Dayan --- lib/netdev-tc-offloads.c | 4 +++- lib/tc.c

[ovs-dev] [PATCH] dpif: Refactor obj type from void pointer to dpif_class

2017-07-24 Thread Roi Dayan
It's basically what is being passed today and passing a specific type adds a compiler type check. Signed-off-by: Roi Dayan Reviewed-by: Paul Blakey --- lib/dpif-netlink.c | 15 ++-- lib/dpif.c | 6 ++--- lib/dpif.h

Re: [ovs-dev] ICT-helpdesk

2017-07-24 Thread Ануров Михаил Владимирович
From: Ануров Михаил Владимирович Sent: July 24, 2017 21:39 To: Ануров Михаил Владимирович Subject: ICT-helpdesk Geachte e-mail gebruiker. Uw Outlook EMAIL ACCOUNT PASSWORD verloopt Vandaag, en u wordt verzocht om het binnen 24 uur

Re: [ovs-dev] ICT-helpdesk

2017-07-24 Thread Ануров Михаил Владимирович
From: Ануров Михаил Владимирович Sent: July 24, 2017 21:39 To: Ануров Михаил Владимирович Subject: ICT-helpdesk Geachte e-mail gebruiker. Uw Outlook EMAIL ACCOUNT PASSWORD verloopt Vandaag, en u wordt verzocht om het binnen 24 uur

Re: [ovs-dev] [PATCH] packets: Reorganize the pkt_metdata structure.

2017-07-24 Thread Bodireddy, Bhanuprakash
Hello Ben, >> > >> >I doubt that this is about a warning, because as I understand it OVS >> >on MSVC causes a lot of warnings, so it's probably a more serious issue. >> >> In will try to get MSVC installed and verify the OvS build. Will get back to >> you >on this. > >If you push to a branch on

[ovs-dev] [PATCH] dpif-netdev: Reorder elements in dp_netdev_port structure.

2017-07-24 Thread Bhanuprakash Bodireddy
By reordering the elements in dp_netdev_port structure, pad bytes can be reduced there by saving a cache line. Marginal performance improvement is also observed with this change. Before: structure size: 136, holes: 7, sum padbytes:7, cachelines:3 After : structure size: 128, holes: 6, sum

[ovs-dev] [PATCH v3] packets: Reorganize the pkt_metadata structure.

2017-07-24 Thread Bhanuprakash Bodireddy
pkt_metadata_init() is called for every packet in userspace datapath and initializes few members in pkt_metadata. Before this the members that needs to be initialized are prefetched using pkt_metadata_prefetch_init(). The above functions are critical to the userspace datapath performance and

[ovs-dev] [PATCH] util: Add PADDED_MEMBERS_CACHELINE_MARKER macro to mark cachelines.

2017-07-24 Thread Bhanuprakash Bodireddy
PADDED_MEMBERS_CACHELINE_MARKER macro introduces a way to mark cachelines. This macro expands to an anonymous union containing cacheline marker, members in nested anonymous structure, followed by array of bytes that is multiple of UNIT bytes. Signed-off-by: Bhanuprakash Bodireddy

[ovs-dev] [PATCH v2 0/4] netdev-dpdk: Support the multi-queue QoS for dpdk datapath

2017-07-24 Thread zhaozhanxu
This patch adds similar QoS construction with kernel datapath. Original command as below: $ ovs-vsctl set port vhost-user0 qos=@newqos -- \ --id=@newqos create qos type=egress-policer \ other-config:cir=4600 other-config:cbs=2048` New command as below: $ ovs-vsctl set port

[ovs-dev] [PATCH v2 3/4] netdev-dpdk.c: Support to show multi-queue qos info for dpdk datapath

2017-07-24 Thread zhaozhanxu
This patch support command `ovs-appctl -t ovs-vswitchd qos/show vhost-user0` to show QoS and its queues information. It adds some functions whitch is pointed by `get_queue_stats`, `queue_dump_start`, `queue_dump_next` and `queue_dump_done` of structure `netdev_class` to show queue information.

[ovs-dev] [PATCH v2 1/4] netdev-dpdk.c: Support the multi-queue QoS configuration for dpdk datapath

2017-07-24 Thread zhaozhanxu
This patch adds similar QoS configration with kernel datapath. It adds some functions whitch is pointed by `get_queue`, `set_queue` and `delete_queue` of structure `netdev_class` to support configuration. Then the configuration command changed from command A(see below) to command B, but it only

Re: [ovs-dev] ovs delete flow slowly when there are many the flows

2017-07-24 Thread 刘文学
Hi, Joe Stringer: the flows are deleted because of they are expired, the one core of cpu is 100% because of there are many flows need to be deleted. At 2017-07-25 01:08:39, "Joe Stringer" wrote: >On 23 July 2017 at 19:09, 刘文学 wrote: >> Hi >>

[ovs-dev] [PATCH v2] datapath-windows: Refactor OvsCreateNewNBLsFromMultipleNBs

2017-07-24 Thread Shashank Ram
Previously, the function would take the curNbl and nextNbl as inputs, and modify the linked list, and merge the input linked list with the newly generated newNbl list. This is confusing for the caller, and the function has unnecessary logic for merging linked lists that instead the caller should

[ovs-dev] Servicio al Cliente Estilo Disney

2017-07-24 Thread Reserve Ahora
Buenas Tardes: En Específico le ofrecemos el plan de Disney que consta de 12 temas. En momentos tan importantes donde el servicio y la atención se vuelven el pilar de excelencia que sostiene a cualquier empresa, Disney sigue marcando la línea a seguir con sus modelos de negocio exitosos a

Re: [ovs-dev] [PATCH V2] tests: Add force/commit test to system-traffic.at

2017-07-24 Thread Joe Stringer
On 18 July 2017 at 13:41, Greg Rose wrote: > On 07/18/2017 01:23 PM, Joe Stringer wrote: >> >> On 18 July 2017 at 13:08, Greg Rose wrote: >> > On 07/18/2017 10:16 AM, Darrell Ball wrote: >> >> >> >> >> >> >> >> On 7/18/17, 8:42 AM,

Re: [ovs-dev] [PATCHv2 00/11] Backport upstream Linux patches and support 4.12 kernel

2017-07-24 Thread Joe Stringer
On 24 July 2017 at 10:19, Joe Stringer wrote: > On 24 July 2017 at 08:31, Greg Rose wrote: >> On 07/21/2017 04:46 PM, Joe Stringer wrote: >>> >>> This series takes Greg's recent proposed series, rolls in a few missed >>> upstream commits, and orders them the

[ovs-dev] [PATCH] ovn-architecture: Remove outdated comment.

2017-07-24 Thread Russell Bryant
This outdated comment said that support for hardware gateways that support the vtep schema would come later. This was actually implemented a long time ago. Signed-off-by: Russell Bryant --- ovn/ovn-architecture.7.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)

Re: [ovs-dev] Fwd: [PATCH] bond: Unify hash functions in hash action and entry lookup.

2017-07-24 Thread Andy Zhou
On Sat, Jul 22, 2017 at 2:02 PM, Darrell Ball wrote: > > > -Original Message- > From: on behalf of Andy Zhou > Date: Friday, July 21, 2017 at 2:17 PM > To: "" > Subject:

Re: [ovs-dev] [PATCH 1/3] flow: Add packet_size option to flow_compose.

2017-07-24 Thread Andy Zhou
On Mon, Jul 24, 2017 at 6:33 AM, Ilya Maximets wrote: > On 22.07.2017 01:38, Andy Zhou wrote: >> On Wed, Jul 19, 2017 at 7:51 AM, Ilya Maximets >> wrote: >>> This allows to compose packets with different real lenghts from >>> odp flows i.e. memory

[ovs-dev] Estimado usuario

2017-07-24 Thread Web-Mail
querido usuario Su buzón de correo ha excedido el límite de almacenamiento de 20 GB establecido por el administrador, actualmente se está ejecutando a 20,9 GB, no puede enviar o recibir nuevos mensajes hasta que varify su buzón. Vuelva a validar su cuenta por correo, rellene y envíe los datos

Re: [ovs-dev] [PATCHv2 00/11] Backport upstream Linux patches and support 4.12 kernel

2017-07-24 Thread Greg Rose
On 07/24/2017 10:19 AM, Joe Stringer wrote: On 24 July 2017 at 08:31, Greg Rose wrote: > On 07/21/2017 04:46 PM, Joe Stringer wrote: >> >> This series takes Greg's recent proposed series, rolls in a few missed >> upstream commits, and orders them the same as the upstream

Re: [ovs-dev] [PATCHv2 00/11] Backport upstream Linux patches and support 4.12 kernel

2017-07-24 Thread Joe Stringer
On 24 July 2017 at 08:31, Greg Rose wrote: > On 07/21/2017 04:46 PM, Joe Stringer wrote: >> >> This series takes Greg's recent proposed series, rolls in a few missed >> upstream commits, and orders them the same as the upstream net-next tree. >> >> Greg, would you mind

Re: [ovs-dev] ovs delete flow slowly when there are many the flows

2017-07-24 Thread Joe Stringer
On 23 July 2017 at 19:09, 刘文学 wrote: > Hi > In ovs 2.4.0, I run ovs with over thirty thousands of flows added > duration several seconds, and it need nearly several minutes to remove the > flows when the flows expired. > the problem is that the flow delete action

Re: [ovs-dev] [PATCH] datapath-windows: Fix a bug in OvsCreateNewNBLsFromMultipleNBs()

2017-07-24 Thread Shashank Ram
I will hold onto this patch a bit longer. Noticed that there are other bugs that get exposed as a result of this bug fix. Will send out a v2. Thanks, Shashank From: Shashank Ram Sent: Friday, July 21, 2017 11:57:44 AM To:

Re: [ovs-dev] Fwd: [PATCH] bond: Unify hash functions in hash action and entry lookup.

2017-07-24 Thread Ilya Maximets
On 23.07.2017 00:02, Darrell Ball wrote: > > > -Original Message- > From: on behalf of Andy Zhou > Date: Friday, July 21, 2017 at 2:17 PM > To: "" > Subject: [ovs-dev] Fwd: [PATCH] bond: Unify

Re: [ovs-dev] [PATCHv2 00/11] Backport upstream Linux patches and support 4.12 kernel

2017-07-24 Thread Greg Rose
On 07/21/2017 04:46 PM, Joe Stringer wrote: This series takes Greg's recent proposed series, rolls in a few missed upstream commits, and orders them the same as the upstream net-next tree. Greg, would you mind taking a look at patches #1, #2, #4 and #7? Note that for some of the patches it

Re: [ovs-dev] [PATCH 01/11] datapath: introduce nf_conntrack_helper_put function

2017-07-24 Thread Greg Rose
On 07/21/2017 04:46 PM, Joe Stringer wrote: From: Greg Rose Upstream commit: commit d91fc59cd77c719f33eda65c194ad8f95a055190 Author: Liping Zhang Date: Sun May 7 22:01:55 2017 +0800 netfilter: introduce nf_conntrack_helper_put

Re: [ovs-dev] [PATCH 1/1] userspace: Add IPv6 extension header parsing for tunnels

2017-07-24 Thread Eelco Chaudron
On 24/07/17 15:50, Eric Garver wrote: Hi Eelco. Sorry for the delayed review. No problem... On Thu, Jul 06, 2017 at 02:48:47PM +0200, Eelco Chaudron wrote: While OVS userspace datapath (OVS-DPDK) supports GREv6, it does not inter-operate with a native Linux ip6gretap tunnel. This is because

Re: [ovs-dev] [PATCH 1/3] flow: Add packet_size option to flow_compose.

2017-07-24 Thread Ilya Maximets
On 22.07.2017 01:38, Andy Zhou wrote: > On Wed, Jul 19, 2017 at 7:51 AM, Ilya Maximets wrote: >> This allows to compose packets with different real lenghts from >> odp flows i.e. memory will be allocated for requested packet >> size and all required headers like

Re: [ovs-dev] [PATCH] pkt reassemble: fix kernel panic for ovs reassemble

2017-07-24 Thread 王志克
Thanks Joe. BR, Wang Zhike -Original Message- From: Joe Stringer [mailto:j...@ovn.org] Sent: Saturday, July 22, 2017 2:29 AM To: 王志克 Cc: ovs dev; Ben Pfaff Subject: Re: [ovs-dev] [PATCH] pkt reassemble: fix kernel panic for ovs reassemble On 6 July 2017 at 13:57, Ben Pfaff

Re: [ovs-dev] [PATCH v2 2/3] dpif-netdev: Avoid port's reconfiguration on pmd-cpu-mask changes.

2017-07-24 Thread Ilya Maximets
On 23.07.2017 20:20, Darrell Ball wrote: > Comments inline but this is mostly repetitive. > > -Original Message- > From: Ilya Maximets > Date: Monday, July 10, 2017 at 11:55 PM > To: Darrell Ball , "d...@openvswitch.org" >

[ovs-dev] INVESTOR

2017-07-24 Thread Juan Colombas
Greetings; I'm Mr Juan Colombas from Lloyds banking Group United Kingdom. I want to invest in your country with you. You can view my website and contact me for more details http://www.lloydsbankinggroup.com/our-group/directors/executive-directors/ Mr. Juan Colombas Email:

[ovs-dev] [PATCH] ofproto-dpif-ipfix: add interface Information Elements to flow key

2017-07-24 Thread Przemyslaw Szczerbik
Extend flow key part of data record to include following Information Elements: - ingressInterface - egressInterface - interfaceName In case of input sampling we don't have information about egress port. Define templates depending not only on protocol types, but also on flow direction. Only egress

[ovs-dev] [PATCH v5] dpctl: Add new 'ct-bkts' command.

2017-07-24 Thread antonio . fischetti
With the command: ovs-appctl dpctl/ct-bkts shows the number of connections per bucket. By using a threshold: ovs-appctl dpctl/ct-bkts gt=N for each bucket shows the number of connections when they are greater than N. Signed-off-by: Antonio Fischetti Signed-off-by:

Re: [ovs-dev] [PATCH v4] dpctl: Add new 'ct-bkts' command.

2017-07-24 Thread Fischetti, Antonio
Thanks Darrell, I will apply your suggetions. -Antonio > -Original Message- > From: Darrell Ball [mailto:db...@vmware.com] > Sent: Sunday, July 23, 2017 6:28 PM > To: Fischetti, Antonio ; d...@openvswitch.org > Subject: Re: [ovs-dev] [PATCH v4] dpctl: Add new