From: Damjan Marion Date: Thu, 23 Aug 2018 19:58:05 +0000 (+0200) Subject: bihash: remove unused counters X-Git-Tag: v18.10-rc1~378 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=869031c5858c0554e499485f2f28c43e3a32e6dd;p=vpp.git bihash: remove unused counters Change-Id: I1f0aae16e4ace850d7d79b9c2c644a3e0d002636 Signed-off-by: Damjan Marion --- diff --git a/src/vppinfra/bihash_template.c b/src/vppinfra/bihash_template.c index 18d74d9ea2f..e13ceb7173a 100644 --- a/src/vppinfra/bihash_template.c +++ b/src/vppinfra/bihash_template.c @@ -43,8 +43,6 @@ void BV (clib_bihash_init) h->name = (u8 *) name; h->nbuckets = nbuckets; h->log2_nbuckets = max_log2 (nbuckets); - h->cache_hits = 0; - h->cache_misses = 0; /* * Make sure the requested size is rational. The max table @@ -646,8 +644,6 @@ u8 *BV (format_bihash) (u8 * s, va_list * args) } s = format (s, " %lld linear search buckets\n", linear_buckets); - s = format (s, " %lld cache hits, %lld cache misses\n", - h->cache_hits, h->cache_misses); used_bytes = h->alloc_arena_next - h->alloc_arena; s = format (s, " arena: base %llx, next %llx\n" diff --git a/src/vppinfra/bihash_template.h b/src/vppinfra/bihash_template.h index cfb8ceac69e..4ff7e1bfb6c 100644 --- a/src/vppinfra/bihash_template.h +++ b/src/vppinfra/bihash_template.h @@ -84,9 +84,6 @@ typedef struct u32 log2_nbuckets; u8 *name; - u64 cache_hits; - u64 cache_misses; - BVT (clib_bihash_value) ** freelists; /*