From: Jason A. Donenfeld Date: Thu, 8 Jun 2017 03:00:05 +0000 (-0400) Subject: net/neighbor: use get_random_u32 for 32-bit hash random X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b3d0f7895d1251f0af0dd38410e7be3e52be4a1d;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git net/neighbor: use get_random_u32 for 32-bit hash random Using get_random_u32 here is faster, more fitting of the use case, and just as cryptographically secure. It also has the benefit of providing better randomness at early boot, which is when many of these structures are assigned. Signed-off-by: Jason A. Donenfeld Cc: David Miller Signed-off-by: Theodore Ts'o --- diff --git a/net/core/neighbour.c b/net/core/neighbour.c index d274f81fcc2c..9784133b0cdb 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -312,8 +312,7 @@ out_entries: static void neigh_get_hash_rnd(u32 *x) { - get_random_bytes(x, sizeof(*x)); - *x |= 1; + *x = get_random_u32() | 1; } static struct neigh_hash_table *neigh_hash_alloc(unsigned int shift)