From: Theodore Ts'o Date: Thu, 26 Apr 2018 04:44:46 +0000 (-0400) Subject: ext4: add MODULE_SOFTDEP to ensure crc32c is included in the initramfs X-Git-Tag: v4.17-rc3~5^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7ef79ad52136712172eb0525bf0b462516bf2f93;p=uclinux-h8%2Flinux.git ext4: add MODULE_SOFTDEP to ensure crc32c is included in the initramfs Fixes: a45403b51582 ("ext4: always initialize the crc32c checksum driver") Reported-by: François Valenduc Signed-off-by: Theodore Ts'o Cc: stable@vger.kernel.org --- diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 185f7e61f4cf..eb104e8476f0 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -5886,5 +5886,6 @@ static void __exit ext4_exit_fs(void) MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others"); MODULE_DESCRIPTION("Fourth Extended Filesystem"); MODULE_LICENSE("GPL"); +MODULE_SOFTDEP("pre: crc32c"); module_init(ext4_init_fs) module_exit(ext4_exit_fs)