From: Kevin Liu Date: Fri, 29 Apr 2022 09:19:56 +0000 (+0000) Subject: net/ice: support DCF queue information query X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2abb590ff701ec6255686cedf0cc8e3e3226efbb;p=dpdk.git net/ice: support DCF queue information query Add below ops, rxq_info_get txq_info_get Signed-off-by: Kevin Liu Acked-by: Qi Zhang --- 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,