linux-cifs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Namjae Jeon <namjae.jeon@samsung.com>
To: linux-cifs@vger.kernel.org, linux-cifsd-devel@lists.sourceforge.net
Cc: Namjae Jeon <namjae.jeon@samsung.com>,
	Steve French <smfrench@gmail.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>,
	Christoph Hellwig <hch@infradead.org>
Subject: [PATCH 1/2] ksmbd: move fs/cifsd to fs/ksmbd
Date: Thu, 24 Jun 2021 09:52:10 +0900	[thread overview]
Message-ID: <20210624005211.26886-1-namjae.jeon@samsung.com> (raw)
In-Reply-To: CGME20210624010230epcas1p27cee803b261296294a069e8169a03c4a@epcas1p2.samsung.com

Move fs/cifsd to fs/ksmbd and rename the remaining cifsd name to ksmbd.

Cc: Steve French <smfrench@gmail.com>
Cc: Ronnie Sahlberg <ronniesahlberg@gmail.com> 
Cc: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
---
 Documentation/filesystems/cifs/index.rst               |  2 +-
 .../filesystems/cifs/{cifsd.rst => ksmbd.rst}          | 10 +++++-----
 fs/Kconfig                                             |  2 +-
 fs/Makefile                                            |  2 +-
 fs/{cifsd => ksmbd}/Kconfig                            |  2 +-
 fs/{cifsd => ksmbd}/Makefile                           |  0
 fs/{cifsd => ksmbd}/asn1.c                             |  0
 fs/{cifsd => ksmbd}/asn1.h                             |  0
 fs/{cifsd => ksmbd}/auth.c                             |  0
 fs/{cifsd => ksmbd}/auth.h                             |  0
 fs/{cifsd => ksmbd}/connection.c                       |  0
 fs/{cifsd => ksmbd}/connection.h                       |  0
 fs/{cifsd => ksmbd}/crypto_ctx.c                       |  0
 fs/{cifsd => ksmbd}/crypto_ctx.h                       |  0
 fs/{cifsd => ksmbd}/glob.h                             |  0
 fs/{cifsd => ksmbd}/ksmbd_server.h                     |  0
 fs/{cifsd => ksmbd}/ksmbd_spnego_negtokeninit.asn1     |  0
 fs/{cifsd => ksmbd}/ksmbd_spnego_negtokentarg.asn1     |  0
 fs/{cifsd => ksmbd}/ksmbd_work.c                       |  0
 fs/{cifsd => ksmbd}/ksmbd_work.h                       |  0
 fs/{cifsd => ksmbd}/mgmt/ksmbd_ida.c                   |  0
 fs/{cifsd => ksmbd}/mgmt/ksmbd_ida.h                   |  0
 fs/{cifsd => ksmbd}/mgmt/share_config.c                |  0
 fs/{cifsd => ksmbd}/mgmt/share_config.h                |  0
 fs/{cifsd => ksmbd}/mgmt/tree_connect.c                |  0
 fs/{cifsd => ksmbd}/mgmt/tree_connect.h                |  0
 fs/{cifsd => ksmbd}/mgmt/user_config.c                 |  0
 fs/{cifsd => ksmbd}/mgmt/user_config.h                 |  0
 fs/{cifsd => ksmbd}/mgmt/user_session.c                |  0
 fs/{cifsd => ksmbd}/mgmt/user_session.h                |  0
 fs/{cifsd => ksmbd}/misc.c                             |  0
 fs/{cifsd => ksmbd}/misc.h                             |  0
 fs/{cifsd => ksmbd}/ndr.c                              |  0
 fs/{cifsd => ksmbd}/ndr.h                              |  0
 fs/{cifsd => ksmbd}/nterr.h                            |  0
 fs/{cifsd => ksmbd}/ntlmssp.h                          |  0
 fs/{cifsd => ksmbd}/oplock.c                           |  0
 fs/{cifsd => ksmbd}/oplock.h                           |  0
 fs/{cifsd => ksmbd}/server.c                           |  0
 fs/{cifsd => ksmbd}/server.h                           |  0
 fs/{cifsd => ksmbd}/smb2misc.c                         |  0
 fs/{cifsd => ksmbd}/smb2ops.c                          |  0
 fs/{cifsd => ksmbd}/smb2pdu.c                          |  0
 fs/{cifsd => ksmbd}/smb2pdu.h                          |  0
 fs/{cifsd => ksmbd}/smb_common.c                       |  0
 fs/{cifsd => ksmbd}/smb_common.h                       |  0
 fs/{cifsd => ksmbd}/smbacl.c                           |  0
 fs/{cifsd => ksmbd}/smbacl.h                           |  0
 fs/{cifsd => ksmbd}/smbfsctl.h                         |  0
 fs/{cifsd => ksmbd}/smbstatus.h                        |  0
 fs/{cifsd => ksmbd}/transport_ipc.c                    |  0
 fs/{cifsd => ksmbd}/transport_ipc.h                    |  0
 fs/{cifsd => ksmbd}/transport_rdma.c                   |  0
 fs/{cifsd => ksmbd}/transport_rdma.h                   |  0
 fs/{cifsd => ksmbd}/transport_tcp.c                    |  0
 fs/{cifsd => ksmbd}/transport_tcp.h                    |  0
 fs/{cifsd => ksmbd}/unicode.c                          |  0
 fs/{cifsd => ksmbd}/unicode.h                          |  0
 fs/{cifsd => ksmbd}/uniupr.h                           |  0
 fs/{cifsd => ksmbd}/vfs.c                              |  0
 fs/{cifsd => ksmbd}/vfs.h                              |  0
 fs/{cifsd => ksmbd}/vfs_cache.c                        |  0
 fs/{cifsd => ksmbd}/vfs_cache.h                        |  0
 63 files changed, 9 insertions(+), 9 deletions(-)
 rename Documentation/filesystems/cifs/{cifsd.rst => ksmbd.rst} (98%)
 rename fs/{cifsd => ksmbd}/Kconfig (97%)
 rename fs/{cifsd => ksmbd}/Makefile (100%)
 rename fs/{cifsd => ksmbd}/asn1.c (100%)
 rename fs/{cifsd => ksmbd}/asn1.h (100%)
 rename fs/{cifsd => ksmbd}/auth.c (100%)
 rename fs/{cifsd => ksmbd}/auth.h (100%)
 rename fs/{cifsd => ksmbd}/connection.c (100%)
 rename fs/{cifsd => ksmbd}/connection.h (100%)
 rename fs/{cifsd => ksmbd}/crypto_ctx.c (100%)
 rename fs/{cifsd => ksmbd}/crypto_ctx.h (100%)
 rename fs/{cifsd => ksmbd}/glob.h (100%)
 rename fs/{cifsd => ksmbd}/ksmbd_server.h (100%)
 rename fs/{cifsd => ksmbd}/ksmbd_spnego_negtokeninit.asn1 (100%)
 rename fs/{cifsd => ksmbd}/ksmbd_spnego_negtokentarg.asn1 (100%)
 rename fs/{cifsd => ksmbd}/ksmbd_work.c (100%)
 rename fs/{cifsd => ksmbd}/ksmbd_work.h (100%)
 rename fs/{cifsd => ksmbd}/mgmt/ksmbd_ida.c (100%)
 rename fs/{cifsd => ksmbd}/mgmt/ksmbd_ida.h (100%)
 rename fs/{cifsd => ksmbd}/mgmt/share_config.c (100%)
 rename fs/{cifsd => ksmbd}/mgmt/share_config.h (100%)
 rename fs/{cifsd => ksmbd}/mgmt/tree_connect.c (100%)
 rename fs/{cifsd => ksmbd}/mgmt/tree_connect.h (100%)
 rename fs/{cifsd => ksmbd}/mgmt/user_config.c (100%)
 rename fs/{cifsd => ksmbd}/mgmt/user_config.h (100%)
 rename fs/{cifsd => ksmbd}/mgmt/user_session.c (100%)
 rename fs/{cifsd => ksmbd}/mgmt/user_session.h (100%)
 rename fs/{cifsd => ksmbd}/misc.c (100%)
 rename fs/{cifsd => ksmbd}/misc.h (100%)
 rename fs/{cifsd => ksmbd}/ndr.c (100%)
 rename fs/{cifsd => ksmbd}/ndr.h (100%)
 rename fs/{cifsd => ksmbd}/nterr.h (100%)
 rename fs/{cifsd => ksmbd}/ntlmssp.h (100%)
 rename fs/{cifsd => ksmbd}/oplock.c (100%)
 rename fs/{cifsd => ksmbd}/oplock.h (100%)
 rename fs/{cifsd => ksmbd}/server.c (100%)
 rename fs/{cifsd => ksmbd}/server.h (100%)
 rename fs/{cifsd => ksmbd}/smb2misc.c (100%)
 rename fs/{cifsd => ksmbd}/smb2ops.c (100%)
 rename fs/{cifsd => ksmbd}/smb2pdu.c (100%)
 rename fs/{cifsd => ksmbd}/smb2pdu.h (100%)
 rename fs/{cifsd => ksmbd}/smb_common.c (100%)
 rename fs/{cifsd => ksmbd}/smb_common.h (100%)
 rename fs/{cifsd => ksmbd}/smbacl.c (100%)
 rename fs/{cifsd => ksmbd}/smbacl.h (100%)
 rename fs/{cifsd => ksmbd}/smbfsctl.h (100%)
 rename fs/{cifsd => ksmbd}/smbstatus.h (100%)
 rename fs/{cifsd => ksmbd}/transport_ipc.c (100%)
 rename fs/{cifsd => ksmbd}/transport_ipc.h (100%)
 rename fs/{cifsd => ksmbd}/transport_rdma.c (100%)
 rename fs/{cifsd => ksmbd}/transport_rdma.h (100%)
 rename fs/{cifsd => ksmbd}/transport_tcp.c (100%)
 rename fs/{cifsd => ksmbd}/transport_tcp.h (100%)
 rename fs/{cifsd => ksmbd}/unicode.c (100%)
 rename fs/{cifsd => ksmbd}/unicode.h (100%)
 rename fs/{cifsd => ksmbd}/uniupr.h (100%)
 rename fs/{cifsd => ksmbd}/vfs.c (100%)
 rename fs/{cifsd => ksmbd}/vfs.h (100%)
 rename fs/{cifsd => ksmbd}/vfs_cache.c (100%)
 rename fs/{cifsd => ksmbd}/vfs_cache.h (100%)

diff --git a/Documentation/filesystems/cifs/index.rst b/Documentation/filesystems/cifs/index.rst
index e762586b5dc7..1c8597a679ab 100644
--- a/Documentation/filesystems/cifs/index.rst
+++ b/Documentation/filesystems/cifs/index.rst
@@ -6,5 +6,5 @@ CIFS
 .. toctree::
    :maxdepth: 1
 
-   cifsd
+   ksmbd
    cifsroot
diff --git a/Documentation/filesystems/cifs/cifsd.rst b/Documentation/filesystems/cifs/ksmbd.rst
similarity index 98%
rename from Documentation/filesystems/cifs/cifsd.rst
rename to Documentation/filesystems/cifs/ksmbd.rst
index 01a0be272ce6..1e111efecd45 100644
--- a/Documentation/filesystems/cifs/cifsd.rst
+++ b/Documentation/filesystems/cifs/ksmbd.rst
@@ -1,13 +1,13 @@
 .. SPDX-License-Identifier: GPL-2.0
 
 ==========================
-CIFSD - SMB3 Kernel Server
+KSMBD - SMB3 Kernel Server
 ==========================
 
-CIFSD is a linux kernel server which implements SMB3 protocol in kernel space
+KSMBD is a linux kernel server which implements SMB3 protocol in kernel space
 for sharing files over network.
 
-CIFSD architecture
+KSMBD architecture
 ==================
 
 The subset of performance related operations belong in kernelspace and
@@ -60,7 +60,7 @@ NetServerGetInfo. Complete DCE/RPC response is prepared from the user space
 and passed over to the associated kernel thread for the client.
 
 
-CIFSD Feature Status
+KSMBD Feature Status
 ====================
 
 ============================== =================================================
@@ -138,7 +138,7 @@ How to run
 
 6. Access share from Windows or Linux using CIFS
 
-Shutdown CIFSD
+Shutdown KSMBD
 ==============
 
 1. kill user and kernel space daemon
diff --git a/fs/Kconfig b/fs/Kconfig
index 7462761ebd2f..720c38f484c6 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -344,7 +344,7 @@ config NFS_V4_2_SSC_HELPER
 source "net/sunrpc/Kconfig"
 source "fs/ceph/Kconfig"
 source "fs/cifs/Kconfig"
-source "fs/cifsd/Kconfig"
+source "fs/ksmbd/Kconfig"
 source "fs/coda/Kconfig"
 source "fs/afs/Kconfig"
 source "fs/9p/Kconfig"
diff --git a/fs/Makefile b/fs/Makefile
index 542a77374d12..e03a048b2cd8 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -98,7 +98,7 @@ obj-$(CONFIG_NLS)		+= nls/
 obj-$(CONFIG_UNICODE)		+= unicode/
 obj-$(CONFIG_SYSV_FS)		+= sysv/
 obj-$(CONFIG_CIFS)		+= cifs/
-obj-$(CONFIG_SMB_SERVER)	+= cifsd/
+obj-$(CONFIG_SMB_SERVER)	+= ksmbd/
 obj-$(CONFIG_HPFS_FS)		+= hpfs/
 obj-$(CONFIG_NTFS_FS)		+= ntfs/
 obj-$(CONFIG_UFS_FS)		+= ufs/
diff --git a/fs/cifsd/Kconfig b/fs/ksmbd/Kconfig
similarity index 97%
rename from fs/cifsd/Kconfig
rename to fs/ksmbd/Kconfig
index 796f928a7da0..ba8554fc36d3 100644
--- a/fs/cifsd/Kconfig
+++ b/fs/ksmbd/Kconfig
@@ -1,5 +1,5 @@
 config SMB_SERVER
-	tristate "SMB server support (EXPERIMENTAL)"
+	tristate "SMB3 server support (EXPERIMENTAL)"
 	depends on INET
 	depends on MULTIUSER
 	depends on FILE_LOCKING
diff --git a/fs/cifsd/Makefile b/fs/ksmbd/Makefile
similarity index 100%
rename from fs/cifsd/Makefile
rename to fs/ksmbd/Makefile
diff --git a/fs/cifsd/asn1.c b/fs/ksmbd/asn1.c
similarity index 100%
rename from fs/cifsd/asn1.c
rename to fs/ksmbd/asn1.c
diff --git a/fs/cifsd/asn1.h b/fs/ksmbd/asn1.h
similarity index 100%
rename from fs/cifsd/asn1.h
rename to fs/ksmbd/asn1.h
diff --git a/fs/cifsd/auth.c b/fs/ksmbd/auth.c
similarity index 100%
rename from fs/cifsd/auth.c
rename to fs/ksmbd/auth.c
diff --git a/fs/cifsd/auth.h b/fs/ksmbd/auth.h
similarity index 100%
rename from fs/cifsd/auth.h
rename to fs/ksmbd/auth.h
diff --git a/fs/cifsd/connection.c b/fs/ksmbd/connection.c
similarity index 100%
rename from fs/cifsd/connection.c
rename to fs/ksmbd/connection.c
diff --git a/fs/cifsd/connection.h b/fs/ksmbd/connection.h
similarity index 100%
rename from fs/cifsd/connection.h
rename to fs/ksmbd/connection.h
diff --git a/fs/cifsd/crypto_ctx.c b/fs/ksmbd/crypto_ctx.c
similarity index 100%
rename from fs/cifsd/crypto_ctx.c
rename to fs/ksmbd/crypto_ctx.c
diff --git a/fs/cifsd/crypto_ctx.h b/fs/ksmbd/crypto_ctx.h
similarity index 100%
rename from fs/cifsd/crypto_ctx.h
rename to fs/ksmbd/crypto_ctx.h
diff --git a/fs/cifsd/glob.h b/fs/ksmbd/glob.h
similarity index 100%
rename from fs/cifsd/glob.h
rename to fs/ksmbd/glob.h
diff --git a/fs/cifsd/ksmbd_server.h b/fs/ksmbd/ksmbd_server.h
similarity index 100%
rename from fs/cifsd/ksmbd_server.h
rename to fs/ksmbd/ksmbd_server.h
diff --git a/fs/cifsd/ksmbd_spnego_negtokeninit.asn1 b/fs/ksmbd/ksmbd_spnego_negtokeninit.asn1
similarity index 100%
rename from fs/cifsd/ksmbd_spnego_negtokeninit.asn1
rename to fs/ksmbd/ksmbd_spnego_negtokeninit.asn1
diff --git a/fs/cifsd/ksmbd_spnego_negtokentarg.asn1 b/fs/ksmbd/ksmbd_spnego_negtokentarg.asn1
similarity index 100%
rename from fs/cifsd/ksmbd_spnego_negtokentarg.asn1
rename to fs/ksmbd/ksmbd_spnego_negtokentarg.asn1
diff --git a/fs/cifsd/ksmbd_work.c b/fs/ksmbd/ksmbd_work.c
similarity index 100%
rename from fs/cifsd/ksmbd_work.c
rename to fs/ksmbd/ksmbd_work.c
diff --git a/fs/cifsd/ksmbd_work.h b/fs/ksmbd/ksmbd_work.h
similarity index 100%
rename from fs/cifsd/ksmbd_work.h
rename to fs/ksmbd/ksmbd_work.h
diff --git a/fs/cifsd/mgmt/ksmbd_ida.c b/fs/ksmbd/mgmt/ksmbd_ida.c
similarity index 100%
rename from fs/cifsd/mgmt/ksmbd_ida.c
rename to fs/ksmbd/mgmt/ksmbd_ida.c
diff --git a/fs/cifsd/mgmt/ksmbd_ida.h b/fs/ksmbd/mgmt/ksmbd_ida.h
similarity index 100%
rename from fs/cifsd/mgmt/ksmbd_ida.h
rename to fs/ksmbd/mgmt/ksmbd_ida.h
diff --git a/fs/cifsd/mgmt/share_config.c b/fs/ksmbd/mgmt/share_config.c
similarity index 100%
rename from fs/cifsd/mgmt/share_config.c
rename to fs/ksmbd/mgmt/share_config.c
diff --git a/fs/cifsd/mgmt/share_config.h b/fs/ksmbd/mgmt/share_config.h
similarity index 100%
rename from fs/cifsd/mgmt/share_config.h
rename to fs/ksmbd/mgmt/share_config.h
diff --git a/fs/cifsd/mgmt/tree_connect.c b/fs/ksmbd/mgmt/tree_connect.c
similarity index 100%
rename from fs/cifsd/mgmt/tree_connect.c
rename to fs/ksmbd/mgmt/tree_connect.c
diff --git a/fs/cifsd/mgmt/tree_connect.h b/fs/ksmbd/mgmt/tree_connect.h
similarity index 100%
rename from fs/cifsd/mgmt/tree_connect.h
rename to fs/ksmbd/mgmt/tree_connect.h
diff --git a/fs/cifsd/mgmt/user_config.c b/fs/ksmbd/mgmt/user_config.c
similarity index 100%
rename from fs/cifsd/mgmt/user_config.c
rename to fs/ksmbd/mgmt/user_config.c
diff --git a/fs/cifsd/mgmt/user_config.h b/fs/ksmbd/mgmt/user_config.h
similarity index 100%
rename from fs/cifsd/mgmt/user_config.h
rename to fs/ksmbd/mgmt/user_config.h
diff --git a/fs/cifsd/mgmt/user_session.c b/fs/ksmbd/mgmt/user_session.c
similarity index 100%
rename from fs/cifsd/mgmt/user_session.c
rename to fs/ksmbd/mgmt/user_session.c
diff --git a/fs/cifsd/mgmt/user_session.h b/fs/ksmbd/mgmt/user_session.h
similarity index 100%
rename from fs/cifsd/mgmt/user_session.h
rename to fs/ksmbd/mgmt/user_session.h
diff --git a/fs/cifsd/misc.c b/fs/ksmbd/misc.c
similarity index 100%
rename from fs/cifsd/misc.c
rename to fs/ksmbd/misc.c
diff --git a/fs/cifsd/misc.h b/fs/ksmbd/misc.h
similarity index 100%
rename from fs/cifsd/misc.h
rename to fs/ksmbd/misc.h
diff --git a/fs/cifsd/ndr.c b/fs/ksmbd/ndr.c
similarity index 100%
rename from fs/cifsd/ndr.c
rename to fs/ksmbd/ndr.c
diff --git a/fs/cifsd/ndr.h b/fs/ksmbd/ndr.h
similarity index 100%
rename from fs/cifsd/ndr.h
rename to fs/ksmbd/ndr.h
diff --git a/fs/cifsd/nterr.h b/fs/ksmbd/nterr.h
similarity index 100%
rename from fs/cifsd/nterr.h
rename to fs/ksmbd/nterr.h
diff --git a/fs/cifsd/ntlmssp.h b/fs/ksmbd/ntlmssp.h
similarity index 100%
rename from fs/cifsd/ntlmssp.h
rename to fs/ksmbd/ntlmssp.h
diff --git a/fs/cifsd/oplock.c b/fs/ksmbd/oplock.c
similarity index 100%
rename from fs/cifsd/oplock.c
rename to fs/ksmbd/oplock.c
diff --git a/fs/cifsd/oplock.h b/fs/ksmbd/oplock.h
similarity index 100%
rename from fs/cifsd/oplock.h
rename to fs/ksmbd/oplock.h
diff --git a/fs/cifsd/server.c b/fs/ksmbd/server.c
similarity index 100%
rename from fs/cifsd/server.c
rename to fs/ksmbd/server.c
diff --git a/fs/cifsd/server.h b/fs/ksmbd/server.h
similarity index 100%
rename from fs/cifsd/server.h
rename to fs/ksmbd/server.h
diff --git a/fs/cifsd/smb2misc.c b/fs/ksmbd/smb2misc.c
similarity index 100%
rename from fs/cifsd/smb2misc.c
rename to fs/ksmbd/smb2misc.c
diff --git a/fs/cifsd/smb2ops.c b/fs/ksmbd/smb2ops.c
similarity index 100%
rename from fs/cifsd/smb2ops.c
rename to fs/ksmbd/smb2ops.c
diff --git a/fs/cifsd/smb2pdu.c b/fs/ksmbd/smb2pdu.c
similarity index 100%
rename from fs/cifsd/smb2pdu.c
rename to fs/ksmbd/smb2pdu.c
diff --git a/fs/cifsd/smb2pdu.h b/fs/ksmbd/smb2pdu.h
similarity index 100%
rename from fs/cifsd/smb2pdu.h
rename to fs/ksmbd/smb2pdu.h
diff --git a/fs/cifsd/smb_common.c b/fs/ksmbd/smb_common.c
similarity index 100%
rename from fs/cifsd/smb_common.c
rename to fs/ksmbd/smb_common.c
diff --git a/fs/cifsd/smb_common.h b/fs/ksmbd/smb_common.h
similarity index 100%
rename from fs/cifsd/smb_common.h
rename to fs/ksmbd/smb_common.h
diff --git a/fs/cifsd/smbacl.c b/fs/ksmbd/smbacl.c
similarity index 100%
rename from fs/cifsd/smbacl.c
rename to fs/ksmbd/smbacl.c
diff --git a/fs/cifsd/smbacl.h b/fs/ksmbd/smbacl.h
similarity index 100%
rename from fs/cifsd/smbacl.h
rename to fs/ksmbd/smbacl.h
diff --git a/fs/cifsd/smbfsctl.h b/fs/ksmbd/smbfsctl.h
similarity index 100%
rename from fs/cifsd/smbfsctl.h
rename to fs/ksmbd/smbfsctl.h
diff --git a/fs/cifsd/smbstatus.h b/fs/ksmbd/smbstatus.h
similarity index 100%
rename from fs/cifsd/smbstatus.h
rename to fs/ksmbd/smbstatus.h
diff --git a/fs/cifsd/transport_ipc.c b/fs/ksmbd/transport_ipc.c
similarity index 100%
rename from fs/cifsd/transport_ipc.c
rename to fs/ksmbd/transport_ipc.c
diff --git a/fs/cifsd/transport_ipc.h b/fs/ksmbd/transport_ipc.h
similarity index 100%
rename from fs/cifsd/transport_ipc.h
rename to fs/ksmbd/transport_ipc.h
diff --git a/fs/cifsd/transport_rdma.c b/fs/ksmbd/transport_rdma.c
similarity index 100%
rename from fs/cifsd/transport_rdma.c
rename to fs/ksmbd/transport_rdma.c
diff --git a/fs/cifsd/transport_rdma.h b/fs/ksmbd/transport_rdma.h
similarity index 100%
rename from fs/cifsd/transport_rdma.h
rename to fs/ksmbd/transport_rdma.h
diff --git a/fs/cifsd/transport_tcp.c b/fs/ksmbd/transport_tcp.c
similarity index 100%
rename from fs/cifsd/transport_tcp.c
rename to fs/ksmbd/transport_tcp.c
diff --git a/fs/cifsd/transport_tcp.h b/fs/ksmbd/transport_tcp.h
similarity index 100%
rename from fs/cifsd/transport_tcp.h
rename to fs/ksmbd/transport_tcp.h
diff --git a/fs/cifsd/unicode.c b/fs/ksmbd/unicode.c
similarity index 100%
rename from fs/cifsd/unicode.c
rename to fs/ksmbd/unicode.c
diff --git a/fs/cifsd/unicode.h b/fs/ksmbd/unicode.h
similarity index 100%
rename from fs/cifsd/unicode.h
rename to fs/ksmbd/unicode.h
diff --git a/fs/cifsd/uniupr.h b/fs/ksmbd/uniupr.h
similarity index 100%
rename from fs/cifsd/uniupr.h
rename to fs/ksmbd/uniupr.h
diff --git a/fs/cifsd/vfs.c b/fs/ksmbd/vfs.c
similarity index 100%
rename from fs/cifsd/vfs.c
rename to fs/ksmbd/vfs.c
diff --git a/fs/cifsd/vfs.h b/fs/ksmbd/vfs.h
similarity index 100%
rename from fs/cifsd/vfs.h
rename to fs/ksmbd/vfs.h
diff --git a/fs/cifsd/vfs_cache.c b/fs/ksmbd/vfs_cache.c
similarity index 100%
rename from fs/cifsd/vfs_cache.c
rename to fs/ksmbd/vfs_cache.c
diff --git a/fs/cifsd/vfs_cache.h b/fs/ksmbd/vfs_cache.h
similarity index 100%
rename from fs/cifsd/vfs_cache.h
rename to fs/ksmbd/vfs_cache.h
-- 
2.17.1


       reply	other threads:[~2021-06-24  1:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20210624010230epcas1p27cee803b261296294a069e8169a03c4a@epcas1p2.samsung.com>
2021-06-24  0:52 ` Namjae Jeon [this message]
     [not found]   ` <CGME20210624010231epcas1p22d8b6576f5966f45cbf9bf99331dec53@epcas1p2.samsung.com>
2021-06-24  0:52     ` [PATCH 2/2] MAINTAINERS: rename cifsd to ksmbd Namjae Jeon
2021-06-24  5:27       ` Christoph Hellwig
2021-06-24  5:25   ` [PATCH 1/2] ksmbd: move fs/cifsd to fs/ksmbd Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210624005211.26886-1-namjae.jeon@samsung.com \
    --to=namjae.jeon@samsung.com \
    --cc=hch@infradead.org \
    --cc=linux-cifs@vger.kernel.org \
    --cc=linux-cifsd-devel@lists.sourceforge.net \
    --cc=ronniesahlberg@gmail.com \
    --cc=smfrench@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).