hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
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