perfmon: properly unmap mmapped pages

Add missing array index so that actual mmapped pages are unmpapped
instead of attempting to unmap array holding those pages.

Type: fix
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: Ib8709cce1bcbfb505307c140266834b284af796c
This commit is contained in:
Klement Sekera
2021-10-26 11:41:10 +02:00
parent 3effadc66f
commit dec79ecf39

View File

@@ -70,7 +70,7 @@ perfmon_reset (vlib_main_t *vm)
vec_free (tr->node_stats);
for (int j = 0; j < PERF_MAX_EVENTS; j++)
if (tr->mmap_pages[j])
munmap (tr->mmap_pages, page_size);
munmap (tr->mmap_pages[j], page_size);
}
vec_free (pm->thread_runtimes);