From 7be474635dad869975b3a5dbcaaf17d14f2fb104 Mon Sep 17 00:00:00 2001 From: Nathan Skrzypczak Date: Tue, 1 Sep 2020 09:35:31 +0200 Subject: [PATCH] vppinfra: Fix bihash coverity warning Type: fix Hitting a code not reachable when setting BIHASH_KVP_AT_BUCKET_LEVEL = 1 Change-Id: I24d539df67ae7650a3b1969f5709a6f7366d786b Signed-off-by: Nathan Skrzypczak --- src/vppinfra/bihash_template.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vppinfra/bihash_template.h b/src/vppinfra/bihash_template.h index 85c5d6505c0..d6aa3c9f6ef 100644 --- a/src/vppinfra/bihash_template.h +++ b/src/vppinfra/bihash_template.h @@ -368,9 +368,9 @@ BV (clib_bihash_get_bucket) (BVT (clib_bihash) * h, u64 hash) offset = offset * (sizeof (BVT (clib_bihash_bucket)) + (BIHASH_KVP_PER_PAGE * sizeof (BVT (clib_bihash_kv)))); return ((BVT (clib_bihash_bucket) *) (((u8 *) h->buckets) + offset)); -#endif - +#else return h->buckets + (hash & (h->nbuckets - 1)); +#endif } static inline int BV (clib_bihash_search_inline_with_hash) -- 2.16.6