(11-14-2019, 08:56 PM)VoxUnius Wrote: Hi Everyone.
I'm one of those insane people who dared compiling everything on PBP. It actually hasn't been too bad. I've built the Manjaro kernel and everything I need. The problems were pretty much the same as those other people experienced here. However, I'm not sure about these:
1. Linux kernel load time is pretty long. dmesg indicates a 1 minute delay prior to executing
"cryptd: max_cpu_qlen set to 1000".
If anyone tried to do what I did, please share your experiences
Yeah, same thing here.
I built Manjaro kernel with compiled-in NVMe support for NVMe boot, and it waits for exactly one minute after registering HugeTLBs.
Looks like the issue was reported to the upstream a couple of times. I wonder why it doesn't happen on stock Manjaro kernel...
----
Okay, I was able to figure it out. According to the comment in this commit, crypto_rsa causes significant boot delays when compiled in kernel.
I looked at config that comes with PKGBUILD, and CONFIG_CRYPTO_RSA option was set to 'y'!
Changed it to 'm', recompiled the kernel — now it no longer gets stuck on cryptd!