Commit 3591bb83 authored by Ronnie Sahlberg's avatar Ronnie Sahlberg Committed by Steve French

cifs: don't use 'pre:' for MODULE_SOFTDEP

It can cause
to fail with
modprobe: FATAL: Module <module> is builtin.

RHBZ: 1767094
Signed-off-by: default avatarRonnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent 4357d45f
...@@ -1666,17 +1666,17 @@ MODULE_DESCRIPTION ...@@ -1666,17 +1666,17 @@ MODULE_DESCRIPTION
("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and " ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
"also older servers complying with the SNIA CIFS Specification)"); "also older servers complying with the SNIA CIFS Specification)");
MODULE_VERSION(CIFS_VERSION); MODULE_VERSION(CIFS_VERSION);
MODULE_SOFTDEP("pre: ecb"); MODULE_SOFTDEP("ecb");
MODULE_SOFTDEP("pre: hmac"); MODULE_SOFTDEP("hmac");
MODULE_SOFTDEP("pre: md4"); MODULE_SOFTDEP("md4");
MODULE_SOFTDEP("pre: md5"); MODULE_SOFTDEP("md5");
MODULE_SOFTDEP("pre: nls"); MODULE_SOFTDEP("nls");
MODULE_SOFTDEP("pre: aes"); MODULE_SOFTDEP("aes");
MODULE_SOFTDEP("pre: cmac"); MODULE_SOFTDEP("cmac");
MODULE_SOFTDEP("pre: sha256"); MODULE_SOFTDEP("sha256");
MODULE_SOFTDEP("pre: sha512"); MODULE_SOFTDEP("sha512");
MODULE_SOFTDEP("pre: aead2"); MODULE_SOFTDEP("aead2");
MODULE_SOFTDEP("pre: ccm"); MODULE_SOFTDEP("ccm");
MODULE_SOFTDEP("pre: gcm"); MODULE_SOFTDEP("gcm");
module_init(init_cifs) module_init(init_cifs)
module_exit(exit_cifs) module_exit(exit_cifs)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment