aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeland Krych <leland.krych@gmail.com>2022-05-26 08:37:54 -0700
committerBeno�t Ganne <bganne@cisco.com>2022-06-01 14:40:03 +0000
commit082dc14b4a32e2b04d04c5ef223486d381dda84c (patch)
tree2a91de6f2ee214772a103b288fe4f532bf95c4d2 /src
parent7c3096dac7c96b0c9b0667dcf237f6f9a21c1505 (diff)
stats: swap used and total stats
Type: fix reported stats seem to have mixed up used and total counters Signed-off-by: Leland Krych <leland.krych@gmail.com> Change-Id: I221c7b114c0da2ed53171d7f047a4bda07ee6cb2
Diffstat (limited to 'src')
-rw-r--r--src/vlib/stats/provider_mem.c4
1 files 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;