mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
crypto: rng - Use unregister_rngs in register_rngs
Replace the for loop with a call to crypto_unregister_rngs(). Return 'ret' immediately and remove the goto statement to simplify the error handling code. No functional changes. Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
committed by
Herbert Xu
parent
2ffc1ef4e8
commit
8b3ad41479
12
crypto/rng.c
12
crypto/rng.c
@@ -202,17 +202,13 @@ int crypto_register_rngs(struct rng_alg *algs, int count)
|
|||||||
|
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
ret = crypto_register_rng(algs + i);
|
ret = crypto_register_rng(algs + i);
|
||||||
if (ret)
|
if (ret) {
|
||||||
goto err;
|
crypto_unregister_rngs(algs, i);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err:
|
|
||||||
for (--i; i >= 0; --i)
|
|
||||||
crypto_unregister_rng(algs + i);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(crypto_register_rngs);
|
EXPORT_SYMBOL_GPL(crypto_register_rngs);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user