diff options
author | Nikolay Aleksandrov <nikolay@cumulusnetworks.com> | 2018-12-05 14:14:26 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-06 02:01:51 +0100 |
commit | cf332bca56f4981cad19027f037fb4d661dcb172 (patch) | |
tree | 5ef439caa2d1a9cbfa33fa6dad356487f92c49b2 /net/bridge/br_multicast.c | |
parent | net: bridge: multicast: use non-bh rcu flavor (diff) | |
download | linux-cf332bca56f4981cad19027f037fb4d661dcb172.tar.xz linux-cf332bca56f4981cad19027f037fb4d661dcb172.zip |
net: bridge: mark hash_elasticity as obsolete
Now that the bridge multicast uses the generic rhashtable interface we
can drop the hash_elasticity option as that is already done for us and
it's hardcoded to a maximum of RHT_ELASTICITY (16 currently). Add a
warning about the obsolete option when the hash_elasticity is set.
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_multicast.c')
-rw-r--r-- | net/bridge/br_multicast.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index 5b8cfef8bc4d..804ee15c45c1 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c @@ -1741,7 +1741,6 @@ static void br_ip6_multicast_query_expired(struct timer_list *t) void br_multicast_init(struct net_bridge *br) { - br->hash_elasticity = 4; br->hash_max = 512; br->multicast_router = MDB_RTR_TYPE_TEMP_QUERY; |