Re: [ovs-dev] [PATCH] dpif-netdev: Optimize flushing of output packet buffers

2023-01-13 Thread dheeraj via dev
Hi team , I have addressed all the comments . Please review . Regards , Dheeraj -Original Message- From: Ilya Maximets Sent: 22 December 2022 02:41 To: Dheeraj Kumar ; ovs-dev@openvswitch.org Cc: i.maxim...@ovn.org; Kevin Traynor Subject: Re: [ovs-dev] [PATCH] dpif-netdev: Optimize

Re: [ovs-dev] [PATCH] dpif-netdev: Optimize flushing of output packet buffers

2022-12-21 Thread Ilya Maximets
On 11/18/22 11:40, Dheeraj Kumar via dev wrote: > Problem Statement: > Before OVS 2.12 the OVS-DPDK datapath transmitted processed rx packet batches > directly to the wanted tx queues. In OVS 2.12 each PMD stores the processed > packets in an intermediate buffer per output port and flushes these ou

[ovs-dev] [PATCH] dpif-netdev: Optimize flushing of output packet buffers

2022-11-18 Thread Dheeraj Kumar via dev
Problem Statement: Before OVS 2.12 the OVS-DPDK datapath transmitted processed rx packet batches directly to the wanted tx queues. In OVS 2.12 each PMD stores the processed packets in an intermediate buffer per output port and flushes these output buffers in a separate step. This buffering was intr

Re: [ovs-dev] [PATCH] dpif-netdev: Optimize flushing of output packet buffers

2022-10-25 Thread Ilya Maximets
On 9/22/22 14:52, Dheeraj Kumar via dev wrote: > Problem Statement: > Before OVS 2.12 the OVS-DPDK datapath transmitted processed rx packet batches > directly to the wanted tx queues. In OVS 2.12 each PMD stores the processed > packets in an intermediate buffer per output port and flushes these out

[ovs-dev] [PATCH] dpif-netdev: Optimize flushing of output packet buffers

2022-09-22 Thread Dheeraj Kumar via dev
Problem Statement: Before OVS 2.12 the OVS-DPDK datapath transmitted processed rx packet batches directly to the wanted tx queues. In OVS 2.12 each PMD stores the processed packets in an intermediate buffer per output port and flushes these output buffers in a separate step. This buffering was intr