[PATCH v3 4/5] treewide: use get_random_bytes when possible

Christophe Leroy christophe.leroy at csgroup.eu
Fri Oct 7 04:22:41 AEDT 2022



Le 06/10/2022 à 18:53, Jason A. Donenfeld a écrit :
> The prandom_bytes() function has been a deprecated inline wrapper around
> get_random_bytes() for several releases now, and compiles down to the
> exact same code. Replace the deprecated wrapper with a direct call to
> the real function.
> 
> Reviewed-by: Kees Cook <keescook at chromium.org>
> Signed-off-by: Jason A. Donenfeld <Jason at zx2c4.com>

Reviewed-by: Christophe Leroy <christophe.leroy at csgroup.eu> (Powerpc part)

> ---
>   arch/powerpc/crypto/crc-vpmsum_test.c       |  2 +-
> 
> diff --git a/arch/powerpc/crypto/crc-vpmsum_test.c b/arch/powerpc/crypto/crc-vpmsum_test.c
> index c1c1ef9457fb..273c527868db 100644
> --- a/arch/powerpc/crypto/crc-vpmsum_test.c
> +++ b/arch/powerpc/crypto/crc-vpmsum_test.c
> @@ -82,7 +82,7 @@ static int __init crc_test_init(void)
>   
>   			if (len <= offset)
>   				continue;
> -			prandom_bytes(data, len);
> +			get_random_bytes(data, len);
>   			len -= offset;
>   
>   			crypto_shash_update(crct10dif_shash, data+offset, len);


More information about the Linuxppc-dev mailing list