diff options
author | Klement Sekera <ksekera@cisco.com> | 2020-02-20 11:39:58 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-03-21 12:14:31 +0000 |
commit | 39d0285fca412ea2921fe1ae98a231894cd193cf (patch) | |
tree | 75d579caf2f7b5f1adc26e4a1d62e260e095a30d /src/vppinfra/cuckoo_8_8.h | |
parent | dd73bd321e2718dd9afced36dad53bd624af4f32 (diff) |
vppinfra: fix minor cuckoo bugs and add cuckoo_16_8
Type: improvement
Change-Id: If1164d2eb81e9d4748436cb1bb8b164857d70565
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'src/vppinfra/cuckoo_8_8.h')
-rw-r--r-- | src/vppinfra/cuckoo_8_8.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vppinfra/cuckoo_8_8.h b/src/vppinfra/cuckoo_8_8.h index a3d07c870eb..ace535b58f6 100644 --- a/src/vppinfra/cuckoo_8_8.h +++ b/src/vppinfra/cuckoo_8_8.h @@ -79,7 +79,7 @@ format_cuckoo_kvp_8_8 (u8 * s, va_list * args) if (clib_cuckoo_kv_is_free_8_8 (v)) { - s = format (s, " -- empty -- ", v->key, v->value); + s = format (s, " -- empty -- "); } else { @@ -108,10 +108,8 @@ clib_cuckoo_key_compare_8_8 (u64 a, u64 b) return a == b; } -#if 0 #undef __included_cuckoo_template_h__ #include <vppinfra/cuckoo_template.h> -#endif #endif /* __included_cuckoo_8_8_h__ */ |