]> git.baikalelectronics.ru Git - kernel.git/commit
f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs
authorChao Yu <yuchao0@huawei.com>
Tue, 18 May 2021 01:57:54 +0000 (09:57 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 26 May 2021 14:00:36 +0000 (07:00 -0700)
commit1f2639b9c737ec07894cd6176c3ef16a2b0769ae
tree5a2b26a8679a738141f53efeb4f4bb7d4c13141d
parenta3896a0bd2d86f5e3ef78b6866158068b6a61946
f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs

As marcosfrm reported in bugzilla:

https://bugzilla.kernel.org/show_bug.cgi?id=213089

Initramfs generators rely on "pre" softdeps (and "depends") to include
additional required modules.

F2FS does not declare "pre: crc32" softdep. Then every generator (dracut,
mkinitcpio...) has to maintain a hardcoded list for this purpose.

Hence let's use MODULE_SOFTDEP("pre: crc32") in f2fs code.

Fixes: 89ee9f63b0e9 ("f2fs: use cryptoapi crc32 functions")
Reported-by: marcosfrm <marcosfrm@gmail.com>
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/super.c