On Sun, Oct 03, 2021 at 08:28:01AM +0800, Herbert Xu wrote: > On Fri, Oct 01, 2021 at 11:01:59AM -0700, Nathan Chancellor wrote: > > > > I have attached the Kconfig file that I used to reproduce it. It is > > still reproducible for me at your latest commit in cryptodev > > (e42dff467ee688fe6b5a083f1837d06e3b27d8c0) with that exact command that > > I gave you. > > > > It is possible that it could be crypto_boot_test_finished? > > I don't think that's the issue because algapi already depends on > api. However, the softdep on cryptomgr in api looks suspicious, > as it would always introduce a loop. Can you try removing that > softdep from api.c and see if the problem resolves it self? I assume this is the diff you mean? This does not resolve the issue. My apologies if I am slow to respond, I am on vacation until the middle of next week. Cheers, Nathan diff --git a/crypto/api.c b/crypto/api.c index ee5991fe11f8..e3e87c37f996 100644 --- a/crypto/api.c +++ b/crypto/api.c @@ -646,4 +646,3 @@ EXPORT_SYMBOL_GPL(crypto_req_done); MODULE_DESCRIPTION("Cryptographic core API"); MODULE_LICENSE("GPL"); -MODULE_SOFTDEP("pre: cryptomgr");