[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150319194608.GA27962@casper.infradead.org>
Date: Thu, 19 Mar 2015 19:46:08 +0000
From: Thomas Graf <tgraf@...g.ch>
To: David Miller <davem@...emloft.net>
Cc: netdev@...r.kernel.org, herbert@...dor.apana.org.au
Subject: [PATCH net-next v2] rhashtable: Warn if min_size or max_size are not
a power of two
The current code correctly limits table size to the next power of two.
This check is solely to catch programming errors.
Signed-off-by: Thomas Graf <tgraf@...g.ch>
---
v2: use is_power_of_2() instead of roundup_pow_of_two()
lib/rhashtable.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/rhashtable.c b/lib/rhashtable.c
index 5f8fe3e..5474507 100644
--- a/lib/rhashtable.c
+++ b/lib/rhashtable.c
@@ -933,6 +933,9 @@ int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params)
if (params->nulls_base && params->nulls_base < (1U << RHT_BASE_SHIFT))
return -EINVAL;
+ WARN_ON(params->min_size && !is_power_of_2(params->min_size));
+ WARN_ON(params->max_size && !is_power_of_2(params->max_size));
+
params->min_size = max(params->min_size, HASH_MIN_SIZE);
if (params->nelem_hint)
--
1.9.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists