Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d48ad080 authored by Jason A. Donenfeld's avatar Jason A. Donenfeld Committed by Theodore Ts'o
Browse files

rhashtable: use get_random_u32 for hash_rnd



This is much faster and just as secure. It also has the added benefit of
probably returning better randomness at early-boot on systems with
architectural RNGs.

Signed-off-by: default avatarJason A. Donenfeld <Jason@zx2c4.com>
Cc: Thomas Graf <tgraf@suug.ch>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent ae5b806a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -235,7 +235,7 @@ static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,


	INIT_LIST_HEAD(&tbl->walkers);
	INIT_LIST_HEAD(&tbl->walkers);


	get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
	tbl->hash_rnd = get_random_u32();


	for (i = 0; i < nbuckets; i++)
	for (i = 0; i < nbuckets; i++)
		INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i);
		INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i);