From 0318a113fd7848c76533027edbdee2697442a76e Mon Sep 17 00:00:00 2001 From: Pierre Pfister Date: Mon, 28 May 2018 13:56:04 +0200 Subject: [PATCH 1/1] Fix flowhash size computation for very large hash tables Change-Id: Ieae4ff6429fc5bdcf0e243db40ab7ec00c30730a Signed-off-by: Pierre Pfister --- src/vppinfra/flowhash_template.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vppinfra/flowhash_template.h b/src/vppinfra/flowhash_template.h index 8f8fef2c495..359b9690a50 100644 --- a/src/vppinfra/flowhash_template.h +++ b/src/vppinfra/flowhash_template.h @@ -357,7 +357,7 @@ static_always_inline FVT(flowhash) *FV(flowhash_alloc)(u32 fixed_entries, u32 collision_buckets) { FVT(flowhash) *h; - u32 size; + uword size; void *mem; u32 entries; -- 2.16.6