diff options
author | Florian Westphal <fw@strlen.de> | 2017-04-25 11:41:34 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-04-26 14:39:24 -0400 |
commit | 038a3e858de4e3ddf42c330a22b7efcddbc0a81a (patch) | |
tree | ead97d56b9276b64fbc89f5ed00f6696a490a8ff /lib/rhashtable.c | |
parent | 7acedaf5c4355f812cfef883ac28bf15f7d9205e (diff) | |
download | linux-038a3e858de4e3ddf42c330a22b7efcddbc0a81a.tar.bz2 |
rhashtable: remove insecure_max_entries param
no users in the tree, insecure_max_entries is always set to
ht->p.max_size * 2 in rhtashtable_init().
Replace only spot that uses it with a ht->p.max_size check.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/rhashtable.c')
-rw-r--r-- | lib/rhashtable.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/rhashtable.c b/lib/rhashtable.c index d22a5ef109fb..f3b82e0d417b 100644 --- a/lib/rhashtable.c +++ b/lib/rhashtable.c @@ -961,12 +961,6 @@ int rhashtable_init(struct rhashtable *ht, if (params->max_size) ht->p.max_size = rounddown_pow_of_two(params->max_size); - if (params->insecure_max_entries) - ht->p.insecure_max_entries = - rounddown_pow_of_two(params->insecure_max_entries); - else - ht->p.insecure_max_entries = ht->p.max_size * 2; - ht->p.min_size = max(ht->p.min_size, HASH_MIN_SIZE); if (params->nelem_hint) |