Skip to content

Commit a6a9cff

Browse files
Ronnie Sahlbergsmfrench
authored andcommitted
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>
1 parent 3c6e65e commit a6a9cff

3 files changed

Lines changed: 24 additions & 1 deletion

File tree

fs/cifs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cifs-y := trace.o cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o \
1010
cifs_unicode.o nterr.o cifsencrypt.o \
1111
readdir.o ioctl.o sess.o export.o smb1ops.o winucase.o \
1212
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
1414

1515
cifs-$(CONFIG_CIFS_XATTR) += xattr.o
1616

fs/cifs/fs_context.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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+

fs/cifs/fs_context.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+

0 commit comments

Comments
 (0)