[PATCH 5/5] net/hns3: fix dump device info

Min Hu (Connor) humin29 at huawei.com
Thu Apr 14 15:00:56 CEST 2022


Rx/Tx queue info dump and pvid info dump is both supported
in PF and VF. This patch fixed it.

Fixes: 1a03c659cb9d ("net/hns3: dump device basic info")

Signed-off-by: Min Hu (Connor) <humin29 at huawei.com>
---
 drivers/net/hns3/hns3_ethdev_dump.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/net/hns3/hns3_ethdev_dump.c b/drivers/net/hns3/hns3_ethdev_dump.c
index 1548d231fc..1bb2ab7556 100644
--- a/drivers/net/hns3/hns3_ethdev_dump.c
+++ b/drivers/net/hns3/hns3_ethdev_dump.c
@@ -629,8 +629,6 @@ get_vlan_config_info(FILE *file, struct hns3_hw *hw)
 	ret = get_vlan_tx_offload_cfg(file, hw);
 	if (ret < 0)
 		return;
-
-	get_port_pvid_info(file, hw);
 }
 
 static void
@@ -898,13 +896,14 @@ hns3_eth_dev_priv_dump(struct rte_eth_dev *dev, FILE *file)
 
 	get_device_basic_info(file, dev);
 	get_dev_feature_capability(file, hw);
+	get_rxtx_queue_info(file, dev);
+	get_port_pvid_info(file, hw);
 
 	/* VF only supports dumping basic info and feaure capability */
 	if (hns->is_vf)
 		return 0;
 
 	get_dev_mac_info(file, hns);
-	get_rxtx_queue_info(file, dev);
 	get_vlan_config_info(file, hw);
 	get_fdir_basic_info(file, &hns->pf);
 	get_tm_conf_info(file, dev);
-- 
2.33.0



More information about the dev mailing list