Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-26 Thread Kinsella, Ray
On 25/04/2021 17:42, Thomas Monjalon wrote: > Kinsella, Ray: >> On 16/04/2021 10:57, Thomas Monjalon wrote: >>> 16/04/2021 11:41, Ferruh Yigit: On 4/16/2021 9:58 AM, Thomas Monjalon wrote: > 16/04/2021 10:46, Lijun Ou: >> Currently, upper-layer application could get queue state only

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-25 Thread Thomas Monjalon
Kinsella, Ray: > On 16/04/2021 10:57, Thomas Monjalon wrote: > > 16/04/2021 11:41, Ferruh Yigit: > >> On 4/16/2021 9:58 AM, Thomas Monjalon wrote: > >>> 16/04/2021 10:46, Lijun Ou: > Currently, upper-layer application could get queue state only > through pointers such as dev->data->tx_que

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-23 Thread Kinsella, Ray
On 16/04/2021 10:57, Thomas Monjalon wrote: > 16/04/2021 11:41, Ferruh Yigit: >> On 4/16/2021 9:58 AM, Thomas Monjalon wrote: >>> 16/04/2021 10:46, Lijun Ou: Currently, upper-layer application could get queue state only through pointers such as dev->data->tx_queue_state[queue_id],

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-16 Thread Thomas Monjalon
16/04/2021 11:41, Ferruh Yigit: > On 4/16/2021 9:58 AM, Thomas Monjalon wrote: > > 16/04/2021 10:46, Lijun Ou: > >> Currently, upper-layer application could get queue state only > >> through pointers such as dev->data->tx_queue_state[queue_id], > >> this is not the recommended way to access it. So

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-16 Thread oulijun
在 2021/4/16 16:58, Thomas Monjalon 写道: 16/04/2021 10:46, Lijun Ou: Currently, upper-layer application could get queue state only through pointers such as dev->data->tx_queue_state[queue_id], this is not the recommended way to access it. So this patch add get queue state when call rte_eth_rx_q

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-16 Thread Ferruh Yigit
On 4/16/2021 9:58 AM, Thomas Monjalon wrote: 16/04/2021 10:46, Lijun Ou: Currently, upper-layer application could get queue state only through pointers such as dev->data->tx_queue_state[queue_id], this is not the recommended way to access it. So this patch add get queue state when call rte_eth_r

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-16 Thread Ananyev, Konstantin
> Currently, upper-layer application could get queue state only > through pointers such as dev->data->tx_queue_state[queue_id], > this is not the recommended way to access it. So this patch > add get queue state when call rte_eth_rx_queue_info_get and > rte_eth_tx_queue_info_get API. > > Note: A

Re: [dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-16 Thread Thomas Monjalon
16/04/2021 10:46, Lijun Ou: > Currently, upper-layer application could get queue state only > through pointers such as dev->data->tx_queue_state[queue_id], > this is not the recommended way to access it. So this patch > add get queue state when call rte_eth_rx_queue_info_get and > rte_eth_tx_queue_

[dpdk-dev] [PATCH V4] ethdev: add queue state when retrieve queue information

2021-04-16 Thread Lijun Ou
Currently, upper-layer application could get queue state only through pointers such as dev->data->tx_queue_state[queue_id], this is not the recommended way to access it. So this patch add get queue state when call rte_eth_rx_queue_info_get and rte_eth_tx_queue_info_get API. Note: After add queue_s