Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

cifs: add files to host new mount api

This will make it easier in the future, but also will allow us to
shrink connect.c which is getting too big, and harder to read

Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>

authored by

Ronnie Sahlberg and committed by
Steve French
a6a9cffa 3c6e65e6

+24 -1
+1 -1
fs/cifs/Makefile
··· 10 10 cifs_unicode.o nterr.o cifsencrypt.o \ 11 11 readdir.o ioctl.o sess.o export.o smb1ops.o winucase.o \ 12 12 smb2ops.o smb2maperror.o smb2transport.o \ 13 - smb2misc.o smb2pdu.o smb2inode.o smb2file.o cifsacl.o 13 + smb2misc.o smb2pdu.o smb2inode.o smb2file.o cifsacl.o fs_context.o 14 14 15 15 cifs-$(CONFIG_CIFS_XATTR) += xattr.o 16 16
+8
fs/cifs/fs_context.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 2 + /* 3 + * Copyright (C) 2020, Microsoft Corporation. 4 + * 5 + * Author(s): Steve French <stfrench@microsoft.com> 6 + * David Howells <dhowells@redhat.com> 7 + */ 8 +
+15
fs/cifs/fs_context.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 + /* 3 + * Copyright (C) 2020, Microsoft Corporation. 4 + * 5 + * Author(s): Steve French <stfrench@microsoft.com> 6 + * David Howells <dhowells@redhat.com> 7 + */ 8 + 9 + #ifndef _FS_CONTEXT_H 10 + #define _FS_CONTEXT_H 11 + 12 + 13 + 14 + #endif 15 +