From: Huisong Li <lihuis...@huawei.com>

The error log about indirection table size during initialization phase
of PF and VF is unreasonable when the indirection table size obtained
from firmware or PF function should be zero. In addition, VF driver
should use error level to print this log.

Fixes: 0fce2c46dc16 ("net/hns3: fix RSS indirection table size")
Cc: sta...@dpdk.org

Signed-off-by: Huisong Li <lihuis...@huawei.com>
Signed-off-by: Dongdong Liu <liudongdo...@huawei.com>
---
 drivers/net/hns3/hns3_ethdev.c    | 2 +-
 drivers/net/hns3/hns3_ethdev_vf.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
index d326f70129..eb809cd8c9 100644
--- a/drivers/net/hns3/hns3_ethdev.c
+++ b/drivers/net/hns3/hns3_ethdev.c
@@ -2679,7 +2679,7 @@ hns3_check_dev_specifications(struct hns3_hw *hw)
 {
        if (hw->rss_ind_tbl_size == 0 ||
            hw->rss_ind_tbl_size > HNS3_RSS_IND_TBL_SIZE_MAX) {
-               hns3_err(hw, "the size of hash lookup table configured (%u) 
exceeds the maximum(%u)",
+               hns3_err(hw, "the indirection table size obtained (%u) is 
invalid, and should not be zero or exceed the maximum(%u)",
                         hw->rss_ind_tbl_size, HNS3_RSS_IND_TBL_SIZE_MAX);
                return -EINVAL;
        }
diff --git a/drivers/net/hns3/hns3_ethdev_vf.c 
b/drivers/net/hns3/hns3_ethdev_vf.c
index d220522c43..e43815607a 100644
--- a/drivers/net/hns3/hns3_ethdev_vf.c
+++ b/drivers/net/hns3/hns3_ethdev_vf.c
@@ -718,8 +718,8 @@ hns3vf_check_dev_specifications(struct hns3_hw *hw)
 {
        if (hw->rss_ind_tbl_size == 0 ||
            hw->rss_ind_tbl_size > HNS3_RSS_IND_TBL_SIZE_MAX) {
-               hns3_warn(hw, "the size of hash lookup table configured (%u) 
exceeds the maximum(%u)",
-                         hw->rss_ind_tbl_size, HNS3_RSS_IND_TBL_SIZE_MAX);
+               hns3_err(hw, "the indirection table size obtained (%u) is 
invalid, and should not be zero or exceed the maximum(%u)",
+                        hw->rss_ind_tbl_size, HNS3_RSS_IND_TBL_SIZE_MAX);
                return -EINVAL;
        }
 
-- 
2.22.0

Reply via email to