X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Fbihash_48_8.h;h=328a90b0fd4b204494f4ce0e72f191f589fbf3b2;hb=6a8bfd43a057da68d43074d0abc3c598c5ccb55a;hp=e981950b1bd9a5fd0ea3d849256e99d90cf37115;hpb=09fdf9d074430032c27aba9e12e52440c7de2006;p=vpp.git diff --git a/src/vppinfra/bihash_48_8.h b/src/vppinfra/bihash_48_8.h index e981950b1bd..328a90b0fd4 100644 --- a/src/vppinfra/bihash_48_8.h +++ b/src/vppinfra/bihash_48_8.h @@ -14,12 +14,10 @@ */ #undef BIHASH_TYPE -#undef BIHASH_KVP_CACHE_SIZE #undef BIHASH_KVP_PER_PAGE #define BIHASH_TYPE _48_8 #define BIHASH_KVP_PER_PAGE 4 -#define BIHASH_KVP_CACHE_SIZE 0 #ifndef __included_bihash_48_8_h__ #define __included_bihash_48_8_h__ @@ -39,7 +37,7 @@ typedef struct static inline int clib_bihash_is_free_48_8 (const clib_bihash_kv_48_8_t * v) { - /* Free values are memset to 0xff, check a bit... */ + /* Free values are clib_memset to 0xff, check a bit... */ if (v->key[0] == ~0ULL && v->value == ~0ULL) return 1; return 0;