diff options
author | Thomas Graf <tgraf@suug.ch> | 2015-03-24 16:42:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-24 17:48:40 -0400 |
commit | b5e2c150ac914f28a28833b57397bec0b0a2bd5f (patch) | |
tree | d22f31d07f001ac2afb5ca7a15de3fee73e74ab6 /net/tipc | |
parent | ac833bddb591b9c7a0609f440f196375be184044 (diff) |
rhashtable: Disable automatic shrinking by default
Introduce a new bool automatic_shrinking to require the
user to explicitly opt-in to automatic shrinking of tables.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 094710519477..ee90d74d7516 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c | |||
@@ -2297,6 +2297,7 @@ static const struct rhashtable_params tsk_rht_params = { | |||
2297 | .key_len = sizeof(u32), /* portid */ | 2297 | .key_len = sizeof(u32), /* portid */ |
2298 | .max_size = 1048576, | 2298 | .max_size = 1048576, |
2299 | .min_size = 256, | 2299 | .min_size = 256, |
2300 | .automatic_shrinking = true, | ||
2300 | }; | 2301 | }; |
2301 | 2302 | ||
2302 | int tipc_sk_rht_init(struct net *net) | 2303 | int tipc_sk_rht_init(struct net *net) |