This patch add the heap dump support in proc-info memory dump option. Signed-off-by: Gagandeep Singh <g.si...@nxp.com> --- app/proc-info/main.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/app/proc-info/main.c b/app/proc-info/main.c index b672aaefbe..7137891c14 100644 --- a/app/proc-info/main.c +++ b/app/proc-info/main.c @@ -20,6 +20,7 @@ #include <rte_debug.h> #include <rte_ethdev.h> #include <rte_memory.h> +#include <rte_malloc.h> #include <rte_memzone.h> #include <rte_launch.h> #include <rte_tailq.h> @@ -637,6 +638,10 @@ meminfo_display(void) rte_memzone_dump(stdout); printf("---------- END_MEMORY_ZONES -----------\n"); + printf("------------ HEAP DUMP -------------\n"); + rte_malloc_dump_heaps(stdout); + printf("---------- END_HEAP_DUMP -----------\n"); + printf("------------- TAIL_QUEUES -------------\n"); rte_dump_tailq(stdout); printf("---------- END_TAIL_QUEUES ------------\n"); -- 2.25.1