Skip to content

Commit 0d85b27

Browse files
committed
Merge tag '6.4-rc3-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6
Pull smb directory moves and client fixes from Steve French: "Four smb3 client fixes (three of which marked for stable) and three patches to move of fs/cifs and fs/ksmbd to a new common "fs/smb" parent directory - Move the client and server source directories to a common parent directory: fs/cifs -> fs/smb/client fs/ksmbd -> fs/smb/server fs/smbfs_common -> fs/smb/common - important readahead fix - important fix for SMB1 regression - fix for missing mount option ("mapchars") in mount API conversion - minor debugging improvement" * tag '6.4-rc3-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6: smb3: move Documentation/filesystems/cifs to Documentation/filesystems/smb cifs: correct references in Documentation to old fs/cifs path smb: move client and server files to common directory fs/smb cifs: mapchars mount option ignored smb3: display debug information better for encryption cifs: fix smb1 mount regression cifs: Fix cifs_limit_bvec_subset() to correctly check the maxmimum size
2 parents 192fe71 + ab6cacf commit 0d85b27

File tree

156 files changed

+59
-39
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+59
-39
lines changed

Documentation/admin-guide/cifs/changes.rst

Lines changed: 2 additions & 2 deletions

Documentation/admin-guide/cifs/usage.rst

Lines changed: 4 additions & 4 deletions

Documentation/filesystems/index.rst

Lines changed: 1 addition & 1 deletion

Documentation/filesystems/cifs/cifsroot.rst renamed to Documentation/filesystems/smb/cifsroot.rst

Lines changed: 1 addition & 1 deletion

Documentation/userspace-api/ioctl/ioctl-number.rst

Lines changed: 1 addition & 1 deletion

MAINTAINERS

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5140,8 +5140,8 @@ S: Supported
51405140
W: https://wiki.samba.org/index.php/LinuxCIFS
51415141
T: git git://git.samba.org/sfrench/cifs-2.6.git
51425142
F: Documentation/admin-guide/cifs/
5143-
F: fs/cifs/
5144-
F: fs/smbfs_common/
5143+
F: fs/smb/client/
5144+
F: fs/smb/common/
51455145
F: include/uapi/linux/cifs
51465146

51475147
COMPACTPCI HOTPLUG CORE
@@ -11301,9 +11301,9 @@ R: Tom Talpey <[email protected]>
1130111301
1130211302
S: Maintained
1130311303
T: git git://git.samba.org/ksmbd.git
11304-
F: Documentation/filesystems/cifs/ksmbd.rst
11305-
F: fs/ksmbd/
11306-
F: fs/smbfs_common/
11304+
F: Documentation/filesystems/smb/ksmbd.rst
11305+
F: fs/smb/common/
11306+
F: fs/smb/server/
1130711307

1130811308
KERNEL UNIT TESTING FRAMEWORK (KUnit)
1130911309
M: Brendan Higgins <[email protected]>

fs/Kconfig

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,7 @@ config NFS_V4_2_SSC_HELPER
368368
source "net/sunrpc/Kconfig"
369369
source "fs/ceph/Kconfig"
370370

371-
source "fs/cifs/Kconfig"
372-
source "fs/ksmbd/Kconfig"
373-
374-
config SMBFS_COMMON
375-
tristate
376-
default y if CIFS=y || SMB_SERVER=y
377-
default m if CIFS=m || SMB_SERVER=m
378-
371+
source "fs/smb/Kconfig"
379372
source "fs/coda/Kconfig"
380373
source "fs/afs/Kconfig"
381374
source "fs/9p/Kconfig"

fs/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,7 @@ obj-$(CONFIG_LOCKD) += lockd/
9595
obj-$(CONFIG_NLS) += nls/
9696
obj-y += unicode/
9797
obj-$(CONFIG_SYSV_FS) += sysv/
98-
obj-$(CONFIG_SMBFS_COMMON) += smbfs_common/
99-
obj-$(CONFIG_CIFS) += cifs/
100-
obj-$(CONFIG_SMB_SERVER) += ksmbd/
98+
obj-$(CONFIG_SMBFS) += smb/
10199
obj-$(CONFIG_HPFS_FS) += hpfs/
102100
obj-$(CONFIG_NTFS_FS) += ntfs/
103101
obj-$(CONFIG_NTFS3_FS) += ntfs3/

0 commit comments

Comments
 (0)