From: <eagostini@nvidia.com>
To: <dev@dpdk.org>
Cc: Elena Agostini <eagostini@nvidia.com>
Subject: [PATCH v2] app/test-gpudev: remove memory leaks in case of errors
Date: Thu, 18 Nov 2021 01:23:51 +0000 [thread overview]
Message-ID: <20211118012351.9458-1-eagostini@nvidia.com> (raw)
In-Reply-To: <20211117204453.27337-1-eagostini@nvidia.com>
From: Elena Agostini <eagostini@nvidia.com>
Signed-off-by: Elena Agostini <eagostini@nvidia.com>
---
app/test-gpudev/main.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/app/test-gpudev/main.c b/app/test-gpudev/main.c
index c647e30de4..250fba6427 100644
--- a/app/test-gpudev/main.c
+++ b/app/test-gpudev/main.c
@@ -117,6 +117,10 @@ alloc_gpu_memory(uint16_t gpu_id)
return 0;
error:
+
+ rte_gpu_mem_free(gpu_id, ptr_1);
+ rte_gpu_mem_free(gpu_id, ptr_2);
+
printf("\n=======> TEST: FAILED\n");
return -1;
}
@@ -165,6 +169,9 @@ register_cpu_memory(uint16_t gpu_id)
return 0;
error:
+
+ rte_gpu_mem_unregister(gpu_id, ptr);
+ rte_free(ptr);
printf("\n=======> TEST: FAILED\n");
return -1;
}
@@ -227,6 +234,8 @@ create_update_comm_flag(uint16_t gpu_id)
return 0;
error:
+
+ rte_gpu_comm_destroy_flag(&devflag);
printf("\n=======> TEST: FAILED\n");
return -1;
}
@@ -254,7 +263,7 @@ create_update_comm_list(uint16_t gpu_id)
{
int ret = 0;
int i = 0;
- struct rte_gpu_comm_list *comm_list;
+ struct rte_gpu_comm_list *comm_list = NULL;
uint32_t num_comm_items = 1024;
struct rte_mbuf *mbufs[10];
@@ -327,6 +336,8 @@ create_update_comm_list(uint16_t gpu_id)
return 0;
error:
+
+ rte_gpu_comm_destroy_list(comm_list, num_comm_items);
printf("\n=======> TEST: FAILED\n");
return -1;
}
--
2.17.1
next prev parent reply other threads:[~2021-11-17 17:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-17 20:44 [PATCH v1] " eagostini
2021-11-17 16:33 ` David Marchand
2021-11-18 1:23 ` eagostini [this message]
2021-11-25 23:03 ` [PATCH v3] app/test-gpudev: remove all memory leaks eagostini
2021-11-26 12:17 ` Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211118012351.9458-1-eagostini@nvidia.com \
--to=eagostini@nvidia.com \
--cc=dev@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).