[dpdk-dev] [PATCH v6 01/14] ethdev: move queue state defines to private file
Ori Kam
orika at mellanox.com
Sun Oct 27 13:24:48 CET 2019
The queue state defines are internal to the DPDK.
This commit moves them to a private header file.
Signed-off-by: Ori Kam <orika at mellanox.com>
Reviewed-by: Andrew Rybchenko <arybchenko at solarflare.com>
---
V6:
- add rte_ethdev_driver include to nfb driver.
---
drivers/net/nfb/nfb_tx.h | 1 +
lib/librte_ethdev/rte_ethdev.h | 6 ------
lib/librte_ethdev/rte_ethdev_driver.h | 6 ++++++
3 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/drivers/net/nfb/nfb_tx.h b/drivers/net/nfb/nfb_tx.h
index edf5ede..b6578cc 100644
--- a/drivers/net/nfb/nfb_tx.h
+++ b/drivers/net/nfb/nfb_tx.h
@@ -10,6 +10,7 @@
#include <nfb/nfb.h>
#include <nfb/ndp.h>
+#include <rte_ethdev_driver.h>
#include <rte_ethdev.h>
#include <rte_malloc.h>
diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h
index c36c1b6..9e1f9ae 100644
--- a/lib/librte_ethdev/rte_ethdev.h
+++ b/lib/librte_ethdev/rte_ethdev.h
@@ -1336,12 +1336,6 @@ struct rte_eth_dcb_info {
struct rte_eth_dcb_tc_queue_mapping tc_queue;
};
-/**
- * RX/TX queue states
- */
-#define RTE_ETH_QUEUE_STATE_STOPPED 0
-#define RTE_ETH_QUEUE_STATE_STARTED 1
-
#define RTE_ETH_ALL RTE_MAX_ETHPORTS
/* Macros to check for valid port */
diff --git a/lib/librte_ethdev/rte_ethdev_driver.h b/lib/librte_ethdev/rte_ethdev_driver.h
index 936ff8c..c404f17 100644
--- a/lib/librte_ethdev/rte_ethdev_driver.h
+++ b/lib/librte_ethdev/rte_ethdev_driver.h
@@ -22,6 +22,12 @@
#endif
/**
+ * RX/TX queue states
+ */
+#define RTE_ETH_QUEUE_STATE_STOPPED 0
+#define RTE_ETH_QUEUE_STATE_STARTED 1
+
+/**
* @internal
* Returns a ethdev slot specified by the unique identifier name.
*
--
1.8.3.1
More information about the dev
mailing list