diff options
author | Steve French <stfrench@microsoft.com> | 2020-12-11 20:22:04 -0600 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-12-14 09:16:22 -0600 |
commit | 047092ffe2b1774ab456e0eff0e40e0eb4b6600e (patch) | |
tree | a8ecb029fff1a354a5ec96b6d1e16be8ed8bd0d5 /fs/cifs/Makefile | |
parent | bc04499477d9f01034c2afb6097e835c705ac3bd (diff) | |
download | linux-047092ffe2b1774ab456e0eff0e40e0eb4b6600e.tar.bz2 |
cifs: cleanup misc.c
misc.c was getting a little large, move two of the UNC parsing relating
functions to a new C file unc.c which makes the coding of the
upcoming witness protocol patch series a little cleaner as well.
Suggested-by: Rafal Szczesniak <rafal@elbingbrewery.org>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/Makefile')
-rw-r--r-- | fs/cifs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/Makefile b/fs/cifs/Makefile index cd17d0e50f2a..848ebad6af7d 100644 --- a/fs/cifs/Makefile +++ b/fs/cifs/Makefile @@ -8,7 +8,7 @@ obj-$(CONFIG_CIFS) += cifs.o cifs-y := trace.o cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o \ inode.o link.o misc.o netmisc.o smbencrypt.o transport.o asn1.o \ cifs_unicode.o nterr.o cifsencrypt.o \ - readdir.o ioctl.o sess.o export.o smb1ops.o winucase.o \ + readdir.o ioctl.o sess.o export.o smb1ops.o unc.o winucase.o \ smb2ops.o smb2maperror.o smb2transport.o \ smb2misc.o smb2pdu.o smb2inode.o smb2file.o cifsacl.o fs_context.o |