diff options
author | Theodore Ts'o <tytso@mit.edu> | 2018-04-26 07:44:46 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-01 22:58:07 +0300 |
commit | 55cc3bb0a6c7da92dd1332cc8e1651dc2be89bfc (patch) | |
tree | 2d9a3c8650cb73ca0bcf9a53453401f4e6ddc25f /fs/ext4/super.c | |
parent | 4a3674acbf8b076bb42b68f5d95f0877acabf210 (diff) | |
download | linux-55cc3bb0a6c7da92dd1332cc8e1651dc2be89bfc.tar.xz |
ext4: add MODULE_SOFTDEP to ensure crc32c is included in the initramfs
commit 7ef79ad52136712172eb0525bf0b462516bf2f93 upstream.
Fixes: a45403b51582 ("ext4: always initialize the crc32c checksum driver")
Reported-by: François Valenduc <francoisvalenduc@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 3a605c672649..9102ae7709d3 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -5865,5 +5865,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) |