diff mbox series

crypto: api - Add softdep on cryptomgr

Message ID 20191108102630.rljqn5judazucah2@gondor.apana.org.au (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show
Series crypto: api - Add softdep on cryptomgr | expand

Commit Message

Herbert Xu Nov. 8, 2019, 10:26 a.m. UTC
The crypto API requires cryptomgr to be present for probing to work
so we need a softdep to ensure that cryptomgr is added to the
initramfs.

This was usually not a problem because until very recently it was
not practical to build crypto API as module but with the recent
work to eliminate direct AES users this is now possible.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff mbox series

Patch

diff --git a/crypto/api.c b/crypto/api.c
index d8ba54142620..7113a03b3d52 100644
--- a/crypto/api.c
+++ b/crypto/api.c
@@ -608,3 +608,4 @@  EXPORT_SYMBOL_GPL(crypto_req_done);
 
 MODULE_DESCRIPTION("Cryptographic core API");
 MODULE_LICENSE("GPL");
+MODULE_SOFTDEP("pre: cryptomgr");