From: Vijayabhaskar Katamreddy Date: Tue, 7 May 2019 20:27:32 +0000 (-0700) Subject: bihash: Freeing up working_copy_lengths vector X-Git-Tag: v20.01-rc0~662 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=72739a60f28d63d43d2840b31fc655f65aa7baf5;p=vpp.git bihash: Freeing up working_copy_lengths vector 1)Freeing up working_copy_lengths vector 2)Passing vebososity level to fmt_fn Change-Id: I5e3f541e2f8cc0150105cc35835366f84937bb2e Signed-off-by: Vijayabhaskar Katamreddy --- diff --git a/src/vppinfra/bihash_template.c b/src/vppinfra/bihash_template.c index 9de1df4c59c..a10dee025bf 100644 --- a/src/vppinfra/bihash_template.c +++ b/src/vppinfra/bihash_template.c @@ -196,6 +196,7 @@ void BV (clib_bihash_set_kvp_format_fn) (BVT (clib_bihash) * h, void BV (clib_bihash_free) (BVT (clib_bihash) * h) { vec_free (h->working_copies); + vec_free (h->working_copy_lengths); #if BIHASH_32_64_SVM == 0 vec_free (h->freelists); #else @@ -764,7 +765,7 @@ u8 *BV (format_bihash) (u8 * s, va_list * args) { s = format (s, " %d: %U\n", j * BIHASH_KVP_PER_PAGE + k, - h->fmt_fn, &(v->kvp[k])); + h->fmt_fn, &(v->kvp[k]), verbose); } else {