[ovs-dev] [CudaMailTagged] [PATCH] netdev-dpdk: in some case, needn't reconfigure pmd threads when changing MTU

2016-09-05 Thread Binbin Xu
1. The MTU configuration changes, but the size of aligned mempool of new MTU doesn't change. What we have to do is to update the netdev's MTU and max_packet_len. 2. The MTU configuration changes, and the size of aligned mempool of new MTU changes too. The mempool needed by the new MTU

[ovs-dev] Copy: Photo(260)

2016-09-05 Thread Otto
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Copy: Picture(324)

2016-09-05 Thread Brooke
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Emailing: Blank(24)

2016-09-05 Thread Roxanne
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] File: Picture(819)

2016-09-05 Thread Earlene
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH 2/3] netdev-dpdk: Introduce dpdk_mp_mutex.

2016-09-05 Thread Ilya Maximets
'dpdk_mutex' protects two independent things: list of dpdk devices and list of memory pools. Let's spit it in two to avoid global blocking inside 'netdev_dpdk.*_reconfigure()' as possible. Signed-off-by: Ilya Maximets --- lib/netdev-dpdk.c | 34

[ovs-dev] [PATCH 1/3] netdev-dpdk: Fix memory leak in dpdk_mp_{get, put}().

2016-09-05 Thread Ilya Maximets
'dmp' should be freed on failure and on put. Fixes: 8a9562d21a40 ("dpif-netdev: Add DPDK netdev.") Fixes: 8d38823bdf8b ("netdev-dpdk: fix memory leak") Signed-off-by: Ilya Maximets --- lib/netdev-dpdk.c | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-)

[ovs-dev] File: Receipt(361)

2016-09-05 Thread Miquel
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Copy: Photo(70)

2016-09-05 Thread Margery
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] File: Receipt(141)

2016-09-05 Thread Shelia
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Attached: Blank(392)

2016-09-05 Thread Angelia
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] File: Photo(768)

2016-09-05 Thread Arline
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH 0/3] netdev-dpdk: memory leak + vHost client fix.

2016-09-05 Thread Ilya Maximets
Ilya Maximets (3): netdev-dpdk: Fix memory leak in dpdk_mp_{get,put}(). netdev-dpdk: Introduce dpdk_mp_mutex. netdev-dpdk: Don't fail vHost port creation if server mode is unavailable. lib/netdev-dpdk.c | 220 -- 1 file changed, 132

[ovs-dev] [PATCH 3/3] netdev-dpdk: Don't fail vHost port creation if server mode is unavailable.

2016-09-05 Thread Ilya Maximets
Currently vHost client mode feature is broken in case where QEMU and OVS are configured to create sockets in the same place. While adding the port, OVS will try to register vHost driver in server mode and will fail because socket already exist if QEMU was started first. In this situation port

[ovs-dev] File: Blank(910)

2016-09-05 Thread Evangeline
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Emailing: Photo(16)

2016-09-05 Thread Doris
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Bug#754482: marked as done (openvswitch: run dh-autoreconf to update config.{sub, guess} and {libtool, aclocal}.m4)

2016-09-05 Thread Debian Bug Tracking System
Your message dated Mon, 5 Sep 2016 17:05:20 -0300 with message-id and subject line has caused the Debian Bug report #754482, regarding openvswitch: run dh-autoreconf to update config.{sub, guess} and {libtool, aclocal}.m4 to be marked as done.

[ovs-dev] Attached: Receipt(5373)

2016-09-05 Thread Therese
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] netdev-dpdk: fix cross compilation failure

2016-09-05 Thread Hemant Agrawal
A gentle reminder to review this patch? > -Original Message- > From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Hemant > Agrawal > Sent: Tuesday, August 23, 2016 11:37 PM > To: dev@openvswitch.org > Subject: [ovs-dev] [PATCH] netdev-dpdk: fix cross compilation failure > >

[ovs-dev] [PATCH v12 1/2] Check and allocate free qdisc queue id for ports with qos parameters

2016-09-05 Thread bschanmu
From: Babu Shanmugam ovn-northd processes the list of Port_Bindings and hashes the list of queues per chassis. When it finds a port with qos_parameters and without a queue_id, it allocates a free queue for the chassis that this port belongs. The queue_id information is

[ovs-dev] [PATCH v12 2/2] DSCP marking on packets

2016-09-05 Thread bschanmu
From: Babu Shanmugam This patch adds support for marking qos on IP packets based on arbitrary match criteria for a logical switch. Signed-off-by: Babu Shanmugam Suggested-by: Mickey Spiegel --- ovn/lib/logical-fields.c| 2

[ovs-dev] [PATCH v12 0/2] QOS updates with DSCP support

2016-09-05 Thread bschanmu
v11 -> v12: - QOS dscp marking on IP packets based on arbitrary match criteria for a logical switch. Babu Shanmugam (2): Check and allocate free qdisc queue id for ports with qos parameters DSCP marking on packets include/ovn/actions.h | 17 +++- ovn/controller/binding.c| 233