]> git.droids-corp.org - dpdk.git/commitdiff
malloc: set pad to 0 on free
authorAnatoly Burakov <anatoly.burakov@intel.com>
Wed, 2 May 2018 15:38:15 +0000 (16:38 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 2 May 2018 16:35:19 +0000 (18:35 +0200)
The pad value is not used unless element is in pad state, but it
will show up in heap dumps and may be confusing.

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/librte_eal/common/malloc_elem.c

index af81961d275b33152eeb592e2eef0b6032c6c1ba..0a86d347a03b7f64e69521e1ceae67378327d868 100644 (file)
@@ -445,6 +445,8 @@ malloc_elem_free(struct malloc_elem *elem)
 
        malloc_elem_free_list_insert(elem);
 
+       elem->pad = 0;
+
        /* decrease heap's count of allocated elements */
        elem->heap->alloc_count--;