rhashtable: remove indirection for grow/shrink decision functions
Currently, all real users of rhashtable default their grow and shrink decision functions to rht_grow_above_75() and rht_shrink_below_30(), so that there's currently no need to have this explicitly selectable. It can/should be generic and private inside rhashtable until a real use case pops up. Since we can make this private, we'll save us this additional indirection layer and can improve insertion/deletion time as well. Reference: http://patchwork.ozlabs.org/patch/443040/ Suggested-by: David S. Miller <davem@davemloft.net> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
8331de75cb
commit
4c4b52d9b2
@@ -2364,8 +2364,6 @@ int tipc_sk_rht_init(struct net *net)
|
||||
.hashfn = jhash,
|
||||
.max_shift = 20, /* 1M */
|
||||
.min_shift = 8, /* 256 */
|
||||
.grow_decision = rht_grow_above_75,
|
||||
.shrink_decision = rht_shrink_below_30,
|
||||
};
|
||||
|
||||
return rhashtable_init(&tn->sk_rht, &rht_params);
|
||||
|
||||
Reference in New Issue
Block a user