diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2021-08-19 20:34:59 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-08-25 15:47:57 -0500 |
commit | 71c02863246167b3d1639b8278681ca8ebedcb4e (patch) | |
tree | b3358e81c8cbf007f5398c4c4486f64d48381398 /fs/Makefile | |
parent | 76a3c92ec9e0668e4cd0e9ff1782eb68f61a179c (diff) | |
download | linux-71c02863246167b3d1639b8278681ca8ebedcb4e.tar.gz linux-71c02863246167b3d1639b8278681ca8ebedcb4e.tar.bz2 linux-71c02863246167b3d1639b8278681ca8ebedcb4e.zip |
cifs: fork arc4 and create a separate module for it for cifs and other users
We can not drop ARC4 and basically destroy CIFS connectivity for
almost all CIFS users so create a new forked ARC4 module that CIFS and other
subsystems that have a hard dependency on ARC4 can use.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile index f98f3e691c37..77b0e79c8b4f 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -96,6 +96,7 @@ obj-$(CONFIG_LOCKD) += lockd/ obj-$(CONFIG_NLS) += nls/ obj-$(CONFIG_UNICODE) += unicode/ obj-$(CONFIG_SYSV_FS) += sysv/ +obj-$(CONFIG_CIFS_COMMON) += cifs_common/ obj-$(CONFIG_CIFS) += cifs/ obj-$(CONFIG_HPFS_FS) += hpfs/ obj-$(CONFIG_NTFS_FS) += ntfs/ |