raw/skeleton: fix test raw_attr set get failure

Message ID 20190611214412.18388-1-thinhtr@linux.vnet.ibm.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series raw/skeleton: fix test raw_attr set get failure |

Checks

Context Check Description
ci/mellanox-Performance-Testing success Performance Testing PASS
ci/intel-Performance-Testing success Performance Testing PASS
ci/Intel-compilation success Compilation OK
ci/checkpatch success coding style OK

Commit Message

Thinh Tran June 11, 2019, 9:44 p.m. UTC
  Using memory on the stack instead of on the heap by calling malloc
also avoid memory leak in case of test case failures

Fixes: 88d0e47880ec ("raw/skeleton: fix memory leak on test failure")

Signed-off-by: Thinh Tran <thinhtr@linux.vnet.ibm.com>
---
 drivers/raw/skeleton_rawdev/skeleton_rawdev_test.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)
  

Comments

Shreyansh Jain June 12, 2019, 5:35 a.m. UTC | #1
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Thinh Tran
> Sent: Wednesday, June 12, 2019 3:14 AM
> To: dev@dpdk.org
> Cc: Thinh Tran <thinhtr@linux.vnet.ibm.com>
> Subject: [dpdk-dev] [PATCH] raw/skeleton: fix test raw_attr set get failure
> 
> Using memory on the stack instead of on the heap by calling malloc
> also avoid memory leak in case of test case failures
> 
> Fixes: 88d0e47880ec ("raw/skeleton: fix memory leak on test failure")
> 
> Signed-off-by: Thinh Tran <thinhtr@linux.vnet.ibm.com>
> ---

Thanks - I had ignored this issue for quite long now.

Acked-by: Shreyansh Jain <Shreyansh.jain@nxp.com>
  
Thomas Monjalon July 1, 2019, 5:53 p.m. UTC | #2
12/06/2019 07:35, Shreyansh Jain:
> > -----Original Message-----
> > From: dev <dev-bounces@dpdk.org> On Behalf Of Thinh Tran
> > Sent: Wednesday, June 12, 2019 3:14 AM
> > To: dev@dpdk.org
> > Cc: Thinh Tran <thinhtr@linux.vnet.ibm.com>
> > Subject: [dpdk-dev] [PATCH] raw/skeleton: fix test raw_attr set get failure
> > 
> > Using memory on the stack instead of on the heap by calling malloc
> > also avoid memory leak in case of test case failures
> > 
> > Fixes: 88d0e47880ec ("raw/skeleton: fix memory leak on test failure")

Cc: stable@dpdk.org

> > Signed-off-by: Thinh Tran <thinhtr@linux.vnet.ibm.com>
> > ---
> 
> Thanks - I had ignored this issue for quite long now.
> 
> Acked-by: Shreyansh Jain <Shreyansh.jain@nxp.com>

Applied, thanks
  

Patch

diff --git a/drivers/raw/skeleton_rawdev/skeleton_rawdev_test.c b/drivers/raw/skeleton_rawdev/skeleton_rawdev_test.c
index 359c9e296..3250c2296 100644
--- a/drivers/raw/skeleton_rawdev/skeleton_rawdev_test.c
+++ b/drivers/raw/skeleton_rawdev/skeleton_rawdev_test.c
@@ -274,17 +274,14 @@  static int
 test_rawdev_attr_set_get(void)
 {
 	int ret;
-	int *dummy_value;
+	int *dummy_value, set_value;
 	uint64_t ret_value;
 
 	/* Set an attribute and fetch it */
 	ret = rte_rawdev_set_attr(TEST_DEV_ID, "Test1", 100);
 	RTE_TEST_ASSERT(!ret, "Unable to set an attribute (Test1)");
 
-	dummy_value = malloc(sizeof(int));
-	if (!dummy_value)
-		RTE_TEST_ASSERT(1, "Unable to allocate memory (dummy_value)");
-
+	dummy_value = &set_value;
 	*dummy_value = 200;
 	ret = rte_rawdev_set_attr(TEST_DEV_ID, "Test2", (uintptr_t)dummy_value);
 
@@ -294,11 +291,9 @@  test_rawdev_attr_set_get(void)
 			      "Attribute (Test1) not set correctly (%" PRIu64 ")",
 			      ret_value);
 
-	free(dummy_value);
-
 	ret_value = 0;
 	ret = rte_rawdev_get_attr(TEST_DEV_ID, "Test2", &ret_value);
-	RTE_TEST_ASSERT_EQUAL(*((int *)(uintptr_t)ret_value), 200,
+	RTE_TEST_ASSERT_EQUAL(*((int *)(uintptr_t)ret_value), set_value,
 			      "Attribute (Test2) not set correctly (%" PRIu64 ")",
 			      ret_value);