Add below ops,
rxq_info_get
txq_info_get

Signed-off-by: Kevin Liu <kevinx....@intel.com>
---
 doc/guides/rel_notes/release_22_07.rst | 1 +
 drivers/net/ice/ice_dcf_ethdev.c       | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/doc/guides/rel_notes/release_22_07.rst 
b/doc/guides/rel_notes/release_22_07.rst
index 1f404a6ee5..0d6577cd74 100644
--- a/doc/guides/rel_notes/release_22_07.rst
+++ b/doc/guides/rel_notes/release_22_07.rst
@@ -71,6 +71,7 @@ New Features
  * Added support dcf MAC configuration.
  * Added support dcf VLAN filter and offload configuration.
  * Added add extended stats.
+ * Added support queue information getting.
 
 Removed Items
 -------------
diff --git a/drivers/net/ice/ice_dcf_ethdev.c b/drivers/net/ice/ice_dcf_ethdev.c
index 6503700e02..9217392d04 100644
--- a/drivers/net/ice/ice_dcf_ethdev.c
+++ b/drivers/net/ice/ice_dcf_ethdev.c
@@ -1698,6 +1698,8 @@ static const struct eth_dev_ops ice_dcf_eth_dev_ops = {
        .tx_queue_start           = ice_dcf_tx_queue_start,
        .rx_queue_stop            = ice_dcf_rx_queue_stop,
        .tx_queue_stop            = ice_dcf_tx_queue_stop,
+       .rxq_info_get             = ice_rxq_info_get,
+       .txq_info_get             = ice_txq_info_get,
        .link_update              = ice_dcf_link_update,
        .stats_get                = ice_dcf_stats_get,
        .stats_reset              = ice_dcf_stats_reset,
-- 
2.33.1

Reply via email to