summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2026-01-26 18:50:18 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2026-02-06 18:52:22 +0800
commit8b3ad41479b07d2b677f14a91358aaf804f740c3 (patch)
treef45719e7e84712fb34321c8d1ef332a2bab121e0 /crypto
parent2ffc1ef4e826f0c3274f9ff5eb42bc70a5571afd (diff)
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>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/rng.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/crypto/rng.c b/crypto/rng.c
index 5982dcea1010..c6165c8eb387 100644
--- a/crypto/rng.c
+++ b/crypto/rng.c
@@ -202,17 +202,13 @@ int crypto_register_rngs(struct rng_alg *algs, int count)
for (i = 0; i < count; i++) {
ret = crypto_register_rng(algs + i);
- if (ret)
- goto err;
+ if (ret) {
+ crypto_unregister_rngs(algs, i);
+ return ret;
+ }
}
return 0;
-
-err:
- for (--i; i >= 0; --i)
- crypto_unregister_rng(algs + i);
-
- return ret;
}
EXPORT_SYMBOL_GPL(crypto_register_rngs);