Sync some patchs from upstreaming for hns3 pmd and modifies are as follow: 1. fix RTC time after reset 2. fix Rx ring mbuf leakage at reset process 3. fix uninitialized variable 4. modify the code that violates the coding standards (cherry picked from commit f98940e02a12dc752a60e786009ee44cb6b32132)
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From 8bd047fb37fbc06fd695f120d9d51a4ffbcc2493 Mon Sep 17 00:00:00 2001
|
|
From: Jie Hai <haijie1@huawei.com>
|
|
Date: Fri, 2 Jun 2023 19:42:02 +0800
|
|
Subject: net/hns3: fix uninitialized variable
|
|
|
|
[ upstream commit 82d44a304e9a0fe5931b7c68d32c3e30477564f2 ]
|
|
|
|
This patch fixes possible use of uninitialized variable
|
|
"old_tuple_fields".
|
|
|
|
Fixes: e3069658da9f ("net/hns3: reimplement hash flow function")
|
|
Cc: stable@dpdk.org
|
|
|
|
Signed-off-by: Jie Hai <haijie1@huawei.com>
|
|
Signed-off-by: Dongdong Liu <liudongdong3@huawei.com>
|
|
---
|
|
drivers/net/hns3/hns3_flow.c | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/net/hns3/hns3_flow.c b/drivers/net/hns3/hns3_flow.c
|
|
index c1f4f5cb0b..d5c9c22633 100644
|
|
--- a/drivers/net/hns3/hns3_flow.c
|
|
+++ b/drivers/net/hns3/hns3_flow.c
|
|
@@ -1944,8 +1944,9 @@ hns3_flow_set_rss_ptype_tuple(struct hns3_hw *hw,
|
|
if (ret != 0)
|
|
return ret;
|
|
|
|
- hns3_info(hw, "RSS tuple fields changed from 0x%" PRIx64 " to 0x%" PRIx64,
|
|
- old_tuple_fields, new_tuple_fields);
|
|
+ if (!cfg_global_tuple)
|
|
+ hns3_info(hw, "RSS tuple fields changed from 0x%" PRIx64 " to 0x%" PRIx64,
|
|
+ old_tuple_fields, new_tuple_fields);
|
|
|
|
return 0;
|
|
}
|
|
--
|
|
2.23.0
|
|
|