Skip to content

Commit

Permalink
net/bnxt: fix Rx and Tx queue state
Browse files Browse the repository at this point in the history
[ upstream commit 4664c4ea4ae33efcdcc46b30ff20ecc8ced22021 ]

The DPDK framework reports the queue state, which is stored in
dev->data->tx_queue_state and dev->data->rx_queue_state. The
state is maintained by the driver. Users may determine whether
a queue participates in packet forwarding based on the state.
Therefore, the driver needs to modify the queue state in time
according to the actual situation.

Fixes: 9ad9ff4 ("ethdev: add queue state in queried queue information")

Signed-off-by: Jie Hai <haijie1@huawei.com>
Acked-by: Ferruh Yigit <ferruh.yigit@amd.com>
  • Loading branch information
Jie Hai authored and kevintraynor committed Oct 31, 2023
1 parent 8b1f7ca commit af16f64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/net/bnxt/bnxt_ethdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1480,6 +1480,7 @@ static int bnxt_dev_stop(struct rte_eth_dev *eth_dev)
struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
struct rte_intr_handle *intr_handle = pci_dev->intr_handle;
struct rte_eth_link link;
uint16_t i;
int ret;

eth_dev->data->dev_started = 0;
Expand Down Expand Up @@ -1541,6 +1542,11 @@ static int bnxt_dev_stop(struct rte_eth_dev *eth_dev)

eth_dev->data->scattered_rx = 0;

for (i = 0; i < eth_dev->data->nb_rx_queues; i++)
eth_dev->data->rx_queue_state[i] = RTE_ETH_QUEUE_STATE_STOPPED;
for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
eth_dev->data->tx_queue_state[i] = RTE_ETH_QUEUE_STATE_STOPPED;

return 0;
}

Expand Down

0 comments on commit af16f64

Please sign in to comment.