From 082dc14b4a32e2b04d04c5ef223486d381dda84c Mon Sep 17 00:00:00 2001 From: Leland Krych Date: Thu, 26 May 2022 08:37:54 -0700 Subject: [PATCH] stats: swap used and total stats Type: fix reported stats seem to have mixed up used and total counters Signed-off-by: Leland Krych Change-Id: I221c7b114c0da2ed53171d7f047a4bda07ee6cb2 --- src/vlib/stats/provider_mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vlib/stats/provider_mem.c b/src/vlib/stats/provider_mem.c index 1f6d646011a..f3a3f5d3ed4 100644 --- a/src/vlib/stats/provider_mem.c +++ b/src/vlib/stats/provider_mem.c @@ -58,8 +58,8 @@ vlib_stats_register_mem_heap (clib_mem_heap_t *heap) vlib_stats_validate (idx, 0, STAT_MEM_RELEASABLE); /* Create symlink */ - vlib_stats_add_symlink (idx, STAT_MEM_TOTAL, "/mem/%s/used", heap->name); - vlib_stats_add_symlink (idx, STAT_MEM_USED, "/mem/%s/total", heap->name); + vlib_stats_add_symlink (idx, STAT_MEM_USED, "/mem/%s/used", heap->name); + vlib_stats_add_symlink (idx, STAT_MEM_TOTAL, "/mem/%s/total", heap->name); vlib_stats_add_symlink (idx, STAT_MEM_FREE, "/mem/%s/free", heap->name); r.private_data = vec_len (memory_heaps_vec) - 1; -- 2.16.6