sync patches from 22.07 for hns3, dma and testpmd etc. Signed-off-by: Dongdong Liu <liudongdong3@huawei.com> (cherry picked from commit 7beb6a72fff2920a2d993030b0b02822249707fb)
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 30aa792dda9b9e361f1d00012304ee78472c80f6 Mon Sep 17 00:00:00 2001
|
|
From: Chengwen Feng <fengchengwen@huawei.com>
|
|
Date: Fri, 13 May 2022 10:53:55 +0800
|
|
Subject: [PATCH 093/122] ethdev: fix memory leak in xstats telemetry
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The 'eth_xstats' should be freed after telemetry dictionary setup.
|
|
|
|
Fixes: c190daedb9b1 ("ethdev: add telemetry callbacks")
|
|
Cc: stable@dpdk.org
|
|
|
|
Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
|
|
Acked-by: Morten Brørup <mb@smartsharesystems.com>
|
|
Reviewed-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
|
|
---
|
|
lib/ethdev/rte_ethdev.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c
|
|
index 6110cd1893..1db59d3a0e 100644
|
|
--- a/lib/ethdev/rte_ethdev.c
|
|
+++ b/lib/ethdev/rte_ethdev.c
|
|
@@ -6259,6 +6259,7 @@ eth_dev_handle_port_xstats(const char *cmd __rte_unused,
|
|
for (i = 0; i < num_xstats; i++)
|
|
rte_tel_data_add_dict_u64(d, xstat_names[i].name,
|
|
eth_xstats[i].value);
|
|
+ free(eth_xstats);
|
|
return 0;
|
|
}
|
|
|
|
--
|
|
2.22.0
|
|
|