Re: [dpdk-dev] [PATCH v3] ethdev: check if queue setupped in queue-related APIs

2020-10-12 Thread Stephen Hemminger
On Mon, 12 Oct 2020 15:32:44 +0800 "Wei Hu (Xavier)" wrote: > From: Chengchang Tang > > This patch adds checking whether the related Tx or Rx queue has been > setupped in the queue-related API functions to avoid illegal address > access. And validity check of the queue_id is also added in the A

Re: [dpdk-dev] [PATCH v3] ethdev: check if queue setupped in queue-related APIs

2020-10-12 Thread Ferruh Yigit
On 10/12/2020 8:32 AM, Wei Hu (Xavier) wrote: From: Chengchang Tang This patch adds checking whether the related Tx or Rx queue has been setupped in the queue-related API functions to avoid illegal address access. And validity check of the queue_id is also added in the API functions rte_eth_dev

[dpdk-dev] [PATCH v3] ethdev: check if queue setupped in queue-related APIs

2020-10-12 Thread Wei Hu (Xavier)
From: Chengchang Tang This patch adds checking whether the related Tx or Rx queue has been setupped in the queue-related API functions to avoid illegal address access. And validity check of the queue_id is also added in the API functions rte_eth_dev_rx_intr_enable and rte_eth_dev_rx_intr_disable.