Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-25 Thread Ferruh Yigit
On 9/25/2020 9:58 AM, Min Hu (Connor) wrote: Hi, Ferruh Yigit, Your method is very practical. Thanks! But we found that testpmd fails to start with "--rx-queue-stats-mapping" and "--tx-queue-stats-mapping". We've found the cause and modified it. These modifications are being tested. Currentl

Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-25 Thread Min Hu (Connor)
Hi, Ferruh Yigit, Your method is very practical. Thanks! But we found that testpmd fails to start with "--rx-queue-stats-mapping" and "--tx-queue-stats-mapping". We've found the cause and modified it. These modifications are being tested. Currently, the following modifications are related to

Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-23 Thread Ferruh Yigit
On 9/23/2020 3:31 AM, Min Hu (Connor) wrote: 在 2020/9/5 2:31, Ferruh Yigit 写道: On 9/4/2020 12:32 PM, Min Hu (Connor) wrote: From: Huisong Li Currently, only statistics of rx/tx queues with queue_id less than RTE_ETHDEV_QUEUE_STAT_CNTRS can be displayed. If there is a certain application sce

Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-22 Thread Min Hu (Connor)
在 2020/9/5 2:31, Ferruh Yigit 写道: On 9/4/2020 12:32 PM, Min Hu (Connor) wrote: From: Huisong Li Currently, only statistics of rx/tx queues with queue_id less than RTE_ETHDEV_QUEUE_STAT_CNTRS can be displayed. If there is a certain application scenario that it needs to use 256 or more than 2

Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-05 Thread Thomas Monjalon
04/09/2020 20:31, Ferruh Yigit: > On 9/4/2020 12:32 PM, Min Hu (Connor) wrote: > > From: Huisong Li > > > > Currently, only statistics of rx/tx queues with queue_id less than > > RTE_ETHDEV_QUEUE_STAT_CNTRS can be displayed. If there is a certain > > application scenario that it needs to use 256

Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-04 Thread Ferruh Yigit
On 9/4/2020 12:32 PM, Min Hu (Connor) wrote: > From: Huisong Li > > Currently, only statistics of rx/tx queues with queue_id less than > RTE_ETHDEV_QUEUE_STAT_CNTRS can be displayed. If there is a certain > application scenario that it needs to use 256 or more than 256 queues > and display all st

Re: [dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-04 Thread Ferruh Yigit
On 9/4/2020 12:32 PM, Min Hu (Connor) wrote: > From: Huisong Li > > Currently, only statistics of rx/tx queues with queue_id less than > RTE_ETHDEV_QUEUE_STAT_CNTRS can be displayed. If there is a certain > application scenario that it needs to use 256 or more than 256 queues > and display all st

[dpdk-dev] [PATCH V2 1/4] ethdev: fix compiling errors for per-queue statistics

2020-09-04 Thread Min Hu (Connor)
From: Huisong Li Currently, only statistics of rx/tx queues with queue_id less than RTE_ETHDEV_QUEUE_STAT_CNTRS can be displayed. If there is a certain application scenario that it needs to use 256 or more than 256 queues and display all statistics of rx/tx queue. At this moment, we have to chang