All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dpdk-procinfo: free allocated xstats memory upon failure
@ 2016-10-04 16:42 Reshma Pattan
  2016-10-12 13:28 ` Thomas Monjalon
  2016-10-12 13:29 ` Remy Horton
  0 siblings, 2 replies; 3+ messages in thread
From: Reshma Pattan @ 2016-10-04 16:42 UTC (permalink / raw)
  To: dev; +Cc: Reshma Pattan

Some of the failures cases inside the nic_xstats_display()
function doesn't free the allocated memory for the xstats and
their names, memory is freed now.

Fixes: e2aae1c1 ("ethdev: remove name from extended statistic fetch")
Fixes: 22561383 ("app: replace dump_cfg by proc_info")

Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
---
 app/proc_info/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/proc_info/main.c b/app/proc_info/main.c
index 8246fb2..2c56d10 100644
--- a/app/proc_info/main.c
+++ b/app/proc_info/main.c
@@ -268,7 +268,7 @@ nic_xstats_display(uint8_t port_id)
 	if (len != rte_eth_xstats_get_names(
 			port_id, xstats_names, len)) {
 		printf("Cannot get xstat names\n");
-		return;
+		goto err;
 	}
 
 	printf("###### NIC extended statistics for port %-2d #########\n",
@@ -278,8 +278,7 @@ nic_xstats_display(uint8_t port_id)
 	ret = rte_eth_xstats_get(port_id, xstats, len);
 	if (ret < 0 || ret > len) {
 		printf("Cannot get xstats\n");
-		free(xstats);
-		return;
+		goto err;
 	}
 
 	for (i = 0; i < len; i++)
@@ -289,6 +288,7 @@ nic_xstats_display(uint8_t port_id)
 
 	printf("%s############################\n",
 			   nic_stats_border);
+err:
 	free(xstats);
 	free(xstats_names);
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] dpdk-procinfo: free allocated xstats memory upon failure
  2016-10-04 16:42 [PATCH] dpdk-procinfo: free allocated xstats memory upon failure Reshma Pattan
@ 2016-10-12 13:28 ` Thomas Monjalon
  2016-10-12 13:29 ` Remy Horton
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2016-10-12 13:28 UTC (permalink / raw)
  To: Reshma Pattan; +Cc: dev

2016-10-04 17:42, Reshma Pattan:
> Some of the failures cases inside the nic_xstats_display()
> function doesn't free the allocated memory for the xstats and
> their names, memory is freed now.
> 
> Fixes: e2aae1c1 ("ethdev: remove name from extended statistic fetch")
> Fixes: 22561383 ("app: replace dump_cfg by proc_info")
> 
> Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] dpdk-procinfo: free allocated xstats memory upon failure
  2016-10-04 16:42 [PATCH] dpdk-procinfo: free allocated xstats memory upon failure Reshma Pattan
  2016-10-12 13:28 ` Thomas Monjalon
@ 2016-10-12 13:29 ` Remy Horton
  1 sibling, 0 replies; 3+ messages in thread
From: Remy Horton @ 2016-10-12 13:29 UTC (permalink / raw)
  To: Reshma Pattan, dev


On 04/10/2016 17:42, Reshma Pattan wrote:
> Some of the failures cases inside the nic_xstats_display()
> function doesn't free the allocated memory for the xstats and
> their names, memory is freed now.
>
> Fixes: e2aae1c1 ("ethdev: remove name from extended statistic fetch")
> Fixes: 22561383 ("app: replace dump_cfg by proc_info")
>
> Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>

Acked-by: Remy Horton <remy.horton@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-12 13:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-04 16:42 [PATCH] dpdk-procinfo: free allocated xstats memory upon failure Reshma Pattan
2016-10-12 13:28 ` Thomas Monjalon
2016-10-12 13:29 ` Remy Horton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.