Re: [dpdk-dev] [PATCH v7 1/5] ethdev: introduce shared Rx queue

2021-10-17 Thread Xueming(Steven) Li
On Sat, 2021-10-16 at 22:33 -0700, Ajit Khaparde wrote: > On Sat, Oct 16, 2021 at 1:43 AM Xueming Li wrote: > > > > In current DPDK framework, each Rx queue is pre-loaded with mbufs to > > save incoming packets. For some PMDs, when number of representors scale > > out in a switch domain, the memo

Re: [dpdk-dev] [PATCH v7 1/5] ethdev: introduce shared Rx queue

2021-10-16 Thread Ajit Khaparde
On Sat, Oct 16, 2021 at 1:43 AM Xueming Li wrote: > > In current DPDK framework, each Rx queue is pre-loaded with mbufs to > save incoming packets. For some PMDs, when number of representors scale > out in a switch domain, the memory consumption became significant. > Polling all ports also leads t

[dpdk-dev] [PATCH v7 1/5] ethdev: introduce shared Rx queue

2021-10-16 Thread Xueming Li
In current DPDK framework, each Rx queue is pre-loaded with mbufs to save incoming packets. For some PMDs, when number of representors scale out in a switch domain, the memory consumption became significant. Polling all ports also leads to high cache miss, high latency and low throughput. This pat