This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 1a2a76c2685a Merge tag 'x86-urgent-2020-02-09' of git://git.kernel.org/ [...] new 0fd169576648 fs: Add VirtualBox guest shared folder (vboxsf) support new 5586c3c1e0eb Merge branch 'work.vboxsf' of git://git.kernel.org/pub/scm [...] new 0f060936e490 SMB3: Backup intent flag missing from some more ops new 87f93d82e095 smb3: fix problem with null cifs super block with previous patch new b0dd940e582b cifs: fail i/o on soft mounts if sessionsetup errors out new d6fd41905ec5 cifs: log warning message (once) if out of disk space new f2bf09e97b47 cifs: Add tracepoints for errors on flush or fsync new 09c40b15351c cifs: fix soft mounts hanging in the reconnect code new 343a1b777a92 cifs: make multichannel warning more visible new d26c2ddd3356 cifs: add SMB3 change notification support new cc95b6772790 cifs: fix channel signing new e3e056c35108 cifs: fix mode bits from dir listing when mounted with mod [...] new 2391ca41b476 smb3: add one more dynamic tracepoint missing from strict [...] new ab3459d8f0ef smb3: print warning once if posix context returned on open new 51d92d69f77b smb3: Add defines for new information level, FileIdInformation new d1ea35f4cdd4 Merge tag '5.6-rc-smb3-plugfest-patches' of git://git.samb [...]
The 16 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: MAINTAINERS | 6 + fs/Kconfig | 1 + fs/Makefile | 1 + fs/cifs/cifs_ioctl.h | 6 + fs/cifs/cifsacl.c | 14 +- fs/cifs/cifsfs.c | 2 +- fs/cifs/cifsglob.h | 8 +- fs/cifs/cifsproto.h | 8 + fs/cifs/cifssmb.c | 2 +- fs/cifs/connect.c | 2 +- fs/cifs/dir.c | 5 +- fs/cifs/file.c | 21 +- fs/cifs/inode.c | 8 +- fs/cifs/ioctl.c | 18 +- fs/cifs/link.c | 18 +- fs/cifs/readdir.c | 3 +- fs/cifs/sess.c | 2 +- fs/cifs/smb1ops.c | 19 +- fs/cifs/smb2inode.c | 9 +- fs/cifs/smb2ops.c | 145 ++++--- fs/cifs/smb2pdu.c | 36 +- fs/cifs/smb2pdu.h | 16 + fs/cifs/smb2proto.h | 2 +- fs/cifs/smb2transport.c | 5 +- fs/cifs/trace.h | 27 ++ fs/vboxsf/Kconfig | 10 + fs/vboxsf/Makefile | 5 + fs/vboxsf/dir.c | 427 +++++++++++++++++++++ fs/vboxsf/file.c | 379 +++++++++++++++++++ fs/vboxsf/shfl_hostintf.h | 901 ++++++++++++++++++++++++++++++++++++++++++++ fs/vboxsf/super.c | 491 ++++++++++++++++++++++++ fs/vboxsf/utils.c | 551 +++++++++++++++++++++++++++ fs/vboxsf/vboxsf_wrappers.c | 371 ++++++++++++++++++ fs/vboxsf/vfsmod.h | 137 +++++++ 34 files changed, 3527 insertions(+), 129 deletions(-) create mode 100644 fs/vboxsf/Kconfig create mode 100644 fs/vboxsf/Makefile create mode 100644 fs/vboxsf/dir.c create mode 100644 fs/vboxsf/file.c create mode 100644 fs/vboxsf/shfl_hostintf.h create mode 100644 fs/vboxsf/super.c create mode 100644 fs/vboxsf/utils.c create mode 100644 fs/vboxsf/vboxsf_wrappers.c create mode 100644 fs/vboxsf/vfsmod.h