summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2025-12-19 15:51:17 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2026-01-23 13:48:42 +0800
commitfbbc944b5945bfd2715a3d762784c318a040f36a (patch)
tree1ce475adaba126eeb253085e6d3c10e4db3b197d
parent4154f7d3b1c133b909d20c44ecb8277e8482aa6b (diff)
crypto: acomp - Use unregister_acomps in register_acomps
Replace the for loop with a call to crypto_unregister_acomps(). 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>
-rw-r--r--crypto/acompress.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/crypto/acompress.c b/crypto/acompress.c
index be28cbfd22e3..b353615fe265 100644
--- a/crypto/acompress.c
+++ b/crypto/acompress.c
@@ -337,17 +337,13 @@ int crypto_register_acomps(struct acomp_alg *algs, int count)
for (i = 0; i < count; i++) {
ret = crypto_register_acomp(&algs[i]);
- if (ret)
- goto err;
+ if (ret) {
+ crypto_unregister_acomps(algs, i);
+ return ret;
+ }
}
return 0;
-
-err:
- for (--i; i >= 0; --i)
- crypto_unregister_acomp(&algs[i]);
-
- return ret;
}
EXPORT_SYMBOL_GPL(crypto_register_acomps);