hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/crypto/algapi.c
....@@ -456,7 +456,9 @@
456456 if (WARN(ret, "Algorithm %s is not registered", alg->cra_driver_name))
457457 return;
458458
459
- BUG_ON(refcount_read(&alg->cra_refcnt) != 1);
459
+ if (WARN_ON(refcount_read(&alg->cra_refcnt) != 1))
460
+ return;
461
+
460462 if (alg->cra_destroy)
461463 alg->cra_destroy(alg);
462464