Re: [dpdk-dev] [PATCH v3 1/8] ethdev: introduce shared Rx queue

2021-09-28 Thread Xueming(Steven) Li
On Mon, 2021-09-27 at 16:53 -0700, Ajit Khaparde wrote: > On Fri, Sep 17, 2021 at 1:02 AM Xueming Li wrote: > > > > In current DPDK framework, each RX queue is pre-loaded with mbufs for > > incoming packets. When number of representors scale out in a switch > > domain, the memory consumption beca

Re: [dpdk-dev] [PATCH v3 1/8] ethdev: introduce shared Rx queue

2021-09-27 Thread Ajit Khaparde
On Fri, Sep 17, 2021 at 1:02 AM Xueming Li wrote: > > In current DPDK framework, each RX queue is pre-loaded with mbufs for > incoming packets. When number of representors scale out in a switch > domain, the memory consumption became significant. Most important, > polling all ports leads to high c

[dpdk-dev] [PATCH v3 1/8] ethdev: introduce shared Rx queue

2021-09-17 Thread Xueming Li
In current DPDK framework, each RX queue is pre-loaded with mbufs for incoming packets. When number of representors scale out in a switch domain, the memory consumption became significant. Most important, polling all ports leads to high cache miss, high latency and low throughput. This patch intro