From c9edd44acae5da757017788908936d248a062199 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 13 Sep 2011 22:40:51 -0400 Subject: [PATCH] rculfhash: with resize stop and helpers, min size can now be 1 Signed-off-by: Mathieu Desnoyers --- rculfhash.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rculfhash.c b/rculfhash.c index 197a00f..40f6ff5 100644 --- a/rculfhash.c +++ b/rculfhash.c @@ -169,7 +169,8 @@ /* * Define the minimum table size. */ -#define MIN_TABLE_SIZE 128 +//#define MIN_TABLE_SIZE 128 +#define MIN_TABLE_SIZE 1 #if (CAA_BITS_PER_LONG == 32) #define MAX_TABLE_ORDER 32 -- 2.34.1