39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
|
|
From 528e7939a75f2eb6416162e5b77a23300dcc820f Mon Sep 17 00:00:00 2001
|
||
|
|
From: Chengwen Feng <fengchengwen@huawei.com>
|
||
|
|
Date: Sat, 12 Oct 2024 17:14:37 +0800
|
||
|
|
Subject: [PATCH] ethdev: verify queue ID in Tx done cleanup
|
||
|
|
|
||
|
|
[ upstream commit 707f50cef003a89f8fc5170c2ca5aea808cf4297 ]
|
||
|
|
|
||
|
|
Verify queue_id for rte_eth_tx_done_cleanup API.
|
||
|
|
|
||
|
|
Fixes: 44a718c457b5 ("ethdev: add API to free consumed buffers in Tx ring")
|
||
|
|
Cc: stable@dpdk.org
|
||
|
|
|
||
|
|
Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
|
||
|
|
Reviewed-by: Ferruh Yigit <ferruh.yigit@amd.com>
|
||
|
|
---
|
||
|
|
lib/ethdev/rte_ethdev.c | 6 ++++++
|
||
|
|
1 file changed, 6 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c
|
||
|
|
index c0398d9..8438f2a 100644
|
||
|
|
--- a/lib/ethdev/rte_ethdev.c
|
||
|
|
+++ b/lib/ethdev/rte_ethdev.c
|
||
|
|
@@ -2823,6 +2823,12 @@ rte_eth_tx_done_cleanup(uint16_t port_id, uint16_t queue_id, uint32_t free_cnt)
|
||
|
|
RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
|
||
|
|
dev = &rte_eth_devices[port_id];
|
||
|
|
|
||
|
|
+#ifdef RTE_ETHDEV_DEBUG_TX
|
||
|
|
+ ret = eth_dev_validate_tx_queue(dev, queue_id);
|
||
|
|
+ if (ret != 0)
|
||
|
|
+ return ret;
|
||
|
|
+#endif
|
||
|
|
+
|
||
|
|
if (*dev->dev_ops->tx_done_cleanup == NULL)
|
||
|
|
return -ENOTSUP;
|
||
|
|
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|