aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2017-01-25 10:09:10 -0500
committerSteve French <smfrench@gmail.com>2017-02-01 17:46:34 -0500
commitb9be76d585d48cb25af8db0d35e1ef9030fbe13a (patch)
tree0e097820b4eba5a867746a393effb011b5a97d4f
parent3692304bba6164be3810afd41b84ecb0e1e41db1 (diff)
cifs: Add soft dependencies
List soft dependencies of cifs so that mkinitrd and dracut can include the required helper modules. Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com> Signed-off-by: Jean Delvare <jdelvare@suse.de> Cc: Steve French <sfrench@samba.org>
-rw-r--r--fs/cifs/cifsfs.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index 70f4e65fced2..956dd85d7aef 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -1365,5 +1365,17 @@ MODULE_DESCRIPTION
1365 ("VFS to access servers complying with the SNIA CIFS Specification " 1365 ("VFS to access servers complying with the SNIA CIFS Specification "
1366 "e.g. Samba and Windows"); 1366 "e.g. Samba and Windows");
1367MODULE_VERSION(CIFS_VERSION); 1367MODULE_VERSION(CIFS_VERSION);
1368MODULE_SOFTDEP("pre: arc4");
1369MODULE_SOFTDEP("pre: des");
1370MODULE_SOFTDEP("pre: ecb");
1371MODULE_SOFTDEP("pre: hmac");
1372MODULE_SOFTDEP("pre: md4");
1373MODULE_SOFTDEP("pre: md5");
1374MODULE_SOFTDEP("pre: nls");
1375#ifdef CONFIG_CIFS_SMB2
1376MODULE_SOFTDEP("pre: aes");
1377MODULE_SOFTDEP("pre: cmac");
1378MODULE_SOFTDEP("pre: sha256");
1379#endif /* CONFIG_CIFS_SMB2 */
1368module_init(init_cifs) 1380module_init(init_cifs)
1369module_exit(exit_cifs) 1381module_exit(exit_cifs)