54 lines
2.1 KiB
Diff
54 lines
2.1 KiB
Diff
From 55cc3ba793a896aeac7abb05a247b3b32d2adc75 Mon Sep 17 00:00:00 2001
|
|
From: Huisong Li <lihuisong@huawei.com>
|
|
Date: Tue, 31 Jan 2023 21:02:51 +0800
|
|
Subject: net/hns3: fix log about indirection table size
|
|
|
|
[ upstream commit b55516a94246364f272db802f5dfb9aeb8d3a2f2 ]
|
|
|
|
The error log about indirection table size during initialization phase
|
|
of PF and VF is unreasonable.
|
|
|
|
In addition, VF driver should use error level to print this log.
|
|
|
|
Fixes: 0fce2c46dc16 ("net/hns3: fix RSS indirection table size")
|
|
Cc: stable@dpdk.org
|
|
|
|
Signed-off-by: Huisong Li <lihuisong@huawei.com>
|
|
Signed-off-by: Dongdong Liu <liudongdong3@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 25f9c9fab1..ed273b5b69 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 de44b07691..8a3a3cc657 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.23.0
|
|
|