Commit 446c89ac authored by Herbert Xu's avatar Herbert Xu Committed by David S. Miller

tipc: Use rhashtable max/min_size instead of max/min_shift

This patch converts tipc to use rhashtable max/min_size instead of
the obsolete max/min_shift.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b06eee59
...@@ -2286,8 +2286,8 @@ int tipc_sk_rht_init(struct net *net) ...@@ -2286,8 +2286,8 @@ int tipc_sk_rht_init(struct net *net)
.key_offset = offsetof(struct tipc_sock, portid), .key_offset = offsetof(struct tipc_sock, portid),
.key_len = sizeof(u32), /* portid */ .key_len = sizeof(u32), /* portid */
.hashfn = jhash, .hashfn = jhash,
.max_shift = 20, /* 1M */ .max_size = 1048576,
.min_shift = 8, /* 256 */ .min_size = 256,
}; };
return rhashtable_init(&tn->sk_rht, &rht_params); return rhashtable_init(&tn->sk_rht, &rht_params);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment