Re: [ovs-dev] [PATCH ovs V3 00/25] Introducing HW offload support for openvswitch

2017-03-12 Thread Roi Dayan
On 10/03/2017 10:46, Simon Horman wrote: On Wed, Feb 08, 2017 at 05:29:13PM +0200, Roi Dayan wrote: This patch series introduces rule offload functionality to dpif-netlink via netdev ports new flow offloading API. The user can specify whether to enable rule offloading or not via OVS

[ovs-dev] Did You Request For Email Termination?

2017-03-12 Thread Administrator
If you still want to keep your email address, kindly follow the reference below and manually cancel the request. Please Click Here To Cancel Termination Request Thanks. ___ dev mailing list d...@openvswitch.org

[ovs-dev] Cielo Compra Premiada Cliente Premiado

2017-03-12 Thread Parabens Voce Acaba De Ser Premiado
Caso n-o esteja visualizando, Abra Aqui. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] [PATCH 5/5] dp-packet.h: Fix comments in dp_packet_source.

2017-03-12 Thread Bhanuprakash Bodireddy
Add the appropriate function and the source file. Signed-off-by: Bhanuprakash Bodireddy --- lib/dp-packet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dp-packet.h b/lib/dp-packet.h index 17b7026..c73ca19 100644 --- a/lib/dp-packet.h

[ovs-dev] [PATCH 4/5] dpif-netdev: Fix comments for dp_netdev_pmd_thread struct.

2017-03-12 Thread Bhanuprakash Bodireddy
The sorted subtable ranking patch introduced a classifier instance per ingress port with its subtables ranked on the frequency of hits. The pmd thread can have more classifier instances now and solely depends on the number of ingress ports currently handled by the pmd thread. Signed-off-by:

[ovs-dev] [PATCH 3/5] Documentation: Update DPDK doc EMC conditional insert section.

2017-03-12 Thread Bhanuprakash Bodireddy
Update the documentation with the information on the megaflow hits observed with the default 'emc-insert-inv-prob' value. Also add the recommended setting for achieving higher forwarding performance. Signed-off-by: Bhanuprakash Bodireddy CC: Ciara Loftus

[ovs-dev] [PATCH 2/5] dpif-netdev: Reorder elements in dp_netdev structure.

2017-03-12 Thread Bhanuprakash Bodireddy
'emc_insert_min' variable is made to align on a 64-byte boundary and this introduces a 24 byte hole. This patch moves the emc_insert_min member variable slightly higher in the order to remove the hole and thus saves a cache line with the new ordering. Signed-off-by: Bhanuprakash Bodireddy

[ovs-dev] [PATCH 1/5] dpif-netdev: Skip EMC lookup when EMC is disabled.

2017-03-12 Thread Bhanuprakash Bodireddy
Conditional EMC insert patch gives the flexibility to configure the probability of flow insertion in to EMC. This also allows an option to entirely disable EMC by setting 'emc-insert-inv-prob=0' which can be useful at large number of parallel flows. This patch skips EMC lookup when EMC is