[PATCH v4 04/42] latency: use rte strerror
Dengdui Huang
huangdengdui at huawei.com
Wed Oct 23 10:28:14 CEST 2024
The function strerror() is insecure in a multi-thread environment.
This patch uses rte_strerror() to replace it.
Cc: stable at dpdk.org
Signed-off-by: Dengdui Huang <huangdengdui at huawei.com>
Acked-by: Chengwen Feng <fengchengwen at huawei.com>
Acked-by: Morten Brørup <mb at smartsharesystems.com>
---
lib/latencystats/rte_latencystats.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/latencystats/rte_latencystats.c b/lib/latencystats/rte_latencystats.c
index 6a261309f9..1ae95a52ae 100644
--- a/lib/latencystats/rte_latencystats.c
+++ b/lib/latencystats/rte_latencystats.c
@@ -268,7 +268,7 @@ rte_latencystats_init(uint64_t app_samp_intvl,
if (ret != 0) {
LATENCY_STATS_LOG(INFO,
"Error during getting device (port %u) info: %s",
- pid, strerror(-ret));
+ pid, rte_strerror(-ret));
continue;
}
@@ -312,7 +312,7 @@ rte_latencystats_uninit(void)
if (ret != 0) {
LATENCY_STATS_LOG(INFO,
"Error during getting device (port %u) info: %s",
- pid, strerror(-ret));
+ pid, rte_strerror(-ret));
continue;
}
--
2.33.0
More information about the dev
mailing list