crypto: drbg - Initialise mutex in drbg_healthcheck_sanity
As we moved the mutex init out of drbg_instantiate and into cra_init we need to explicitly initialise the mutex in drbg_healthcheck_sanity. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Acked-by: Stephan Mueller <smueller@chronox.de>
This commit is contained in:
parent
fa3ae6253c
commit
e11a754813
@ -1741,6 +1741,8 @@ static inline int __init drbg_healthcheck_sanity(void)
|
|||||||
if (!drbg)
|
if (!drbg)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
mutex_init(&drbg->drbg_mutex);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* if the following tests fail, it is likely that there is a buffer
|
* if the following tests fail, it is likely that there is a buffer
|
||||||
* overflow as buf is much smaller than the requested or provided
|
* overflow as buf is much smaller than the requested or provided
|
||||||
|
Loading…
Reference in New Issue
Block a user