Re: [ovs-dev] [PATCH] Adding support for PMD auto load balancing

2018-12-21 Thread Kevin Traynor
On 12/21/2018 01:59 PM, Nitin Katiyar wrote: > Port rx queues that have not been statically assigned to PMDs are currently > assigned based on periodically sampled load measurements. > The assignment is performed at specific instances – port addition, port > deletion, upon reassignment request via

[ovs-dev] Poderosa herramienta de ventas

2018-12-21 Thread Cómo vender por WhatsApp
Las ventas se logran el 90% con una estrategia comunicacional y el 10% con tecnología. En nuestro webinar podrás conocer todo lo que debes saber sobre WhatsApp, esta poderosa herramienta que todos utilizamos de manera personal y que tiene un potencial increíble para los negocios, en

Re: [ovs-dev] [PATCH] Adding support for PMD auto load balancing

2018-12-21 Thread Ian Stokes
On 12/21/2018 1:59 PM, Nitin Katiyar wrote: Port rx queues that have not been statically assigned to PMDs are currently assigned based on periodically sampled load measurements. The assignment is performed at specific instances – port addition, port deletion, upon reassignment request via CLI

[ovs-dev] [PATCH] Adding support for PMD auto load balancing

2018-12-21 Thread Nitin Katiyar
Port rx queues that have not been statically assigned to PMDs are currently assigned based on periodically sampled load measurements. The assignment is performed at specific instances – port addition, port deletion, upon reassignment request via CLI etc. Due to change in traffic pattern over time

[ovs-dev] [PATCH] datapath-windows: Fix race condition when deleting internal ports

2018-12-21 Thread Alin Gabriel Serdean
We need to hold the port lock until all the operations with a port are completed. Found by inspection. Signed-off-by: Alin Gabriel Serdean --- datapath-windows/ovsext/Vport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath-windows/ovsext/Vport.c

[ovs-dev] [PATCH] system-traffic.at: avoid a race condition on monitor log

2018-12-21 Thread David Marchand
Rather than letting the test framework kill any remaining ofctl monitor, ask and wait for it to gracefully exit before looking at the log file. This solves random failures of tests 29, 30 and 50. Signed-off-by: David Marchand --- tests/system-traffic.at | 10 -- 1 file changed, 8

[ovs-dev] [PATCH] ovsdb-idl.at: Add IDL tests for C library with TCP connection.

2018-12-21 Thread Ilya Maximets
Unlike Python IDL, C library tested only with unix sockets. These tests enlarges the coverage. Signed-off-by: Ilya Maximets --- tests/ovsdb-idl.at | 36 1 file changed, 36 insertions(+) diff --git a/tests/ovsdb-idl.at b/tests/ovsdb-idl.at index

[ovs-dev] [PATCH v2] socket-util: Report POLLHUP as an error while connection completion checking.

2018-12-21 Thread Ilya Maximets
Otherwise failed non-blocking connection could be reported as connected. This causes errors in all following operations with the socket. At least this is true on FreeBSD, where POLLHUP could be set without POLLERR. For example, stream_open_block() tests fails with the following error reporting

[ovs-dev] Claim

2018-12-21 Thread Western Union
Pick up your Western Union Funds $850,000 USD ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH] python: Report POLLHUP as an error while connection completion checking.

2018-12-21 Thread Ilya Maximets
On 20.12.2018 21:10, Ben Pfaff wrote: > On Thu, Dec 20, 2018 at 08:36:39PM +0300, Ilya Maximets wrote: >> Otherwise failed non-blocking connection reported as connected. >> This causes errors in all following operations with the socket. >> >> For example, ovsdb-idl tests fails with the following