Subject: [PATCH] cifs: Fix buffer overflow when parsing NFS reparse points
From: Mahmoud Adam <mngyadam@amazon.com>
To: <gregkh@linuxfoundation.org>
Date: Fri, 22 Nov 2024 14:44:10 +0100

.
Subject: [PATCH] autoconf: drop obsolete unused stdbool.h check
From: Rudi Heitbaum <rudi@heitbaum.com>
To: pshilovsky@samba.org
Cc: linux-cifs@vger.kernel.org, rudi@heitbaum.com
Date: Fri, 22 Nov 2024 13:47:58 +0000

.
Subject: [PATCH 5.4/5.10/5.15] cifs: Fix buffer overflow when parsing NFS reparse points
From: Mahmoud Adam <mngyadam@amazon.com>
To: <gregkh@linuxfoundation.org>
Date: Fri, 22 Nov 2024 16:29:43 +0100

.
Subject: [PATCH 1/2] smb: client: disable directory caching when dir_cache_timeout is zero
From: Henrique Carvalho <henrique.carvalho@suse.com>
To: sfrench@samba.org
Cc: ematsumiya@suse.de,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com,
	linux-cifs@vger.kernel.org,
	Henrique Carvalho <henrique.carvalho@suse.com>
Date: Fri, 22 Nov 2024 17:39:00 -0300

.
Subject: [GIT PULL] smb3 fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Fri, 22 Nov 2024 16:14:22 -0600

Please pull the following changes since commit
adc218676eef25575469234709c2d87185ca223a:

  Linux 6.12 (2024-11-17 14:15:08 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc-part1-SMB3-client-f=
ixes

for you to fetch changes up to a9685b409a03b73d2980bbfa53eb47555802d0a9:

  smb: prevent use-after-free due to open_cached_dir error paths
(2024-11-21 10:45:50 -0600)

----------------------------------------------------------------
15 smb3 client fixes, most also for stable
- Fix two SMB3.1.1 POSIX Extensions problems
- Fixes for special file handling (symlinks and FIFOs)
- Improve compounding
- Four cleanup patches
- Fix use after free in signing
- Add support for handling namespaces for reconnect related upcalls
(e.g. for DNS names resolution and auth)
- Fix various directory lease problems (directory entry caching),
including some important potential use after frees

There are additional important fixes still being tested that are not
included in this P/R, but should be ready later
in the merge window, including for remount cases, e.g. for DFS, and
also additional important directory lease fixes.
----------------------------------------------------------------
Dan Carpenter (1):
      smb/client: Prevent error pointer dereference

Dr. David Alan Gilbert (1):
      cifs: Remove pre-historic unused CIFSSMBCopy

Kees Cook (1):
      smb: client: memcpy() with surrounding object base address

Pali Roh=C3=A1r (1):
      cifs: Recognize SFU char/block devices created by Windows NFS
server on Windows Server <<2012

Paul Aurich (3):
      smb: cached directories can be more than root file handle
      smb: Don't leak cfid when reconnect races with open_cached_dir
      smb: prevent use-after-free due to open_cached_dir error paths

Paulo Alcantara (4):
      smb: client: fix use-after-free of signing key
      smb: client: improve compound padding in encryption
      smb: client: get rid of bounds check in SMB2_ioctl_init()
      smb: client: handle max length for SMB symlinks

Ralph Boehme (1):
      fs/smb/client: implement chmod() for SMB3 POSIX Extensions

Ritvik Budhiraja (1):
      CIFS: New mount option for cifs.upcall namespace resolution

Steve French (1):
      smb3: request handle caching when caching directories

Thorsten Blum (1):
      smb: client: Use str_yes_no() helper function

 fs/smb/client/cached_dir.c    | 99
++++++++++++++++++++++++++---------------------------------
 fs/smb/client/cifs_spnego.c   | 16 ++++++++++
 fs/smb/client/cifsacl.c       | 54 +++++++++++++++++++-------------
 fs/smb/client/cifsfs.c        | 25 +++++++++++++++
 fs/smb/client/cifsglob.h      | 11 +++++--
 fs/smb/client/cifsproto.h     | 11 ++-----
 fs/smb/client/cifssmb.c       | 65 +--------------------------------------
 fs/smb/client/connect.c       | 20 ++++++++++++
 fs/smb/client/dfs_cache.c     |  8 ++---
 fs/smb/client/fs_context.c    | 39 +++++++++++++++++++++++
 fs/smb/client/fs_context.h    | 10 ++++++
 fs/smb/client/inode.c         | 26 +++++++++++++++-
 fs/smb/client/reparse.c       |  5 ++-
 fs/smb/client/reparse.h       |  2 ++
 fs/smb/client/smb2ops.c       | 39 +++--------------------
 fs/smb/client/smb2pdu.c       | 11 +------
 fs/smb/client/smb2proto.h     |  2 --
 fs/smb/client/smb2transport.c | 56 +++++++++++++++++++++++----------
 fs/smb/client/transport.c     | 40 ++++++++----------------
 19 files changed, 293 insertions(+), 246 deletions(-)

--=20
Thanks,

Steve

.
Subject: [PATCH v2 1/3] smb: client: disable directory caching when dir_cache_timeout is zero
From: Henrique Carvalho <henrique.carvalho@suse.com>
To: sfrench@samba.org
Cc: ematsumiya@suse.de,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com,
	linux-cifs@vger.kernel.org,
	Henrique Carvalho <henrique.carvalho@suse.com>
Date: Fri, 22 Nov 2024 22:14:35 -0300

.
Subject: [PATCH 1/6] ksmbd: use __GFP_RETRY_MAYFAIL
From: Namjae Jeon <linkinjeon@kernel.org>
To: linux-cifs@vger.kernel.org
Cc: smfrench@gmail.com,
	senozhatsky@chromium.org,
	tom@talpey.com,
	atteh.mailbox@gmail.com,
	Namjae Jeon <linkinjeon@kernel.org>
Date: Sat, 23 Nov 2024 13:17:01 +0900

.
Subject: [PATCH] ksmbd: fix use-after-free in SMB request handling
From: Yunseong Kim <yskelg@gmail.com>
To: Namjae Jeon <linkinjeon@kernel.org>,
	Steve French <sfrench@samba.org>,
	Sergey Senozhatsky <senozhatsky@chromium.org>,
	Tom Talpey <tom@talpey.com>
Cc: linux-cifs@vger.kernel.org,
	syzkaller@googlegroups.com,
	Austin Kim <austindh.kim@gmail.com>,
	stable@vger.kernel.org
Date: Mon, 25 Nov 2024 16:45:55 +0900

.
Subject: [PATCH v2 5.4/5.10/5.15] cifs: Fix buffer overflow when parsing NFS reparse points
From: Mahmoud Adam <mngyadam@amazon.com>
To: <gregkh@linuxfoundation.org>
Date: Mon, 25 Nov 2024 09:37:46 +0100

.
Subject: [PATCH v2 6.1] cifs: Fix buffer overflow when parsing NFS reparse points
From: Mahmoud Adam <mngyadam@amazon.com>
To: <gregkh@linuxfoundation.org>
Date: Mon, 25 Nov 2024 09:48:01 +0100

.
Subject: [PATCH] smb: server: Fix building with GCC 15
From: Brahmajit Das <brahmajit.xyz@gmail.com>
To: linkinjeon@kernel.org
Cc: ematsumiya@suse.de,
	sfrench@samba.org,
	linux-cifs@vger.kernel.org
Date: Tue, 26 Nov 2024 01:45:51 +0530

.
Subject: [PATCH] smb: client: fix NULL ptr deref in crypto_aead_setkey()
From: Paulo Alcantara <pc@manguebit.com>
To: smfrench@gmail.com
Cc: linux-cifs@vger.kernel.org,
	Paulo Alcantara <pc@manguebit.com>,
	Tom Talpey <tom@talpey.com>
Date: Mon, 25 Nov 2024 17:17:23 -0300

.
Subject: [PATCH] cifs-utils: Skip TGT check if valid service ticket is already available
From: bharathsm.hsk@gmail.com
To: linux-cifs@vger.kernel.org,
	sfrench@samba.org,
	metze@samba.org,
	jlayton@samba.org,
	pshilovsky@samba.org,
	pc@manguebit.com,
	dhowells@redhat.com,
	sprasad@microsoft.com,
	rbudhiraja@microsoft.com
Cc: Bharath SM <bharathsm@microsoft.com>
Date: Tue, 26 Nov 2024 22:57:44 +0530

.
Subject: [PATCH] smb: client: don't try following DFS links in cifs_tree_connect()
From: Steve French <smfrench@gmail.com>
To: Paulo Alcantara <pc@manguebit.com>
Cc: CIFS <linux-cifs@vger.kernel.org>
Date: Tue, 26 Nov 2024 18:39:36 -0600

.
Subject: Special files broken against Samba master
From: Ralph Boehme <slow@samba.org>
To: Steven French <Steven.French@microsoft.com>,
 Paulo Alcantara <pc@manguebit.com>
Cc: CIFS <linux-cifs@vger.kernel.org>
Date: Wed, 27 Nov 2024 20:23:29 +0100

.
Subject: [syzbot] [netfs?] INFO: task hung in netfs_unbuffered_read_iter
From: syzbot <syzbot+8965fea6a159ab9aa32d@syzkaller.appspotmail.com>
To: asmadeus@codewreck.org, bharathsm@microsoft.com, brauner@kernel.org, 
	dhowells@redhat.com, ericvh@kernel.org, jlayton@kernel.org, 
	linux-afs@lists.infradead.org, linux-cifs@vger.kernel.org, 
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, 
	linux-trace-kernel@vger.kernel.org, linux_oss@crudebyte.com, lucho@ionkov.net, 
	marc.dionne@auristor.com, mathieu.desnoyers@efficios.com, mhiramat@kernel.org, 
	netfs@lists.linux.dev, pc@manguebit.com, ronniesahlberg@gmail.com, 
	rostedt@goodmis.org, samba-technical@lists.samba.org, sfrench@samba.org, 
	sprasad@microsoft.com, syzkaller-bugs@googlegroups.com, tom@talpey.com, 
	v9fs@lists.linux.dev
Date: Wed, 27 Nov 2024 13:22:25 -0800

.
Subject: M&E- Consult-RQ387690
From: Ethan Allen <admln@rohanenterprises.info>
To: linux-cifs@vger.kernel.org
Date: 28 Nov 2024 05:57:51 -0800

.
Subject: [GIT PULL] ksmbd server fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Namjae Jeon <linkinjeon@kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Thu, 28 Nov 2024 16:32:45 -0600

Please pull the following changes since commit
adc218676eef25575469234709c2d87185ca223a:

  Linux 6.12 (2024-11-17 14:15:08 -0800)

are available in the Git repository at:

  git://git.samba.org/ksmbd.git tags/6.13-rc-ksmbd-server-fixes

for you to fetch changes up to 9a8c5d89d327ff58e9b2517f8a6afb4181d32c6e:

  ksmbd: fix use-after-free in SMB request handling (2024-11-25 18:58:27 -0600)

----------------------------------------------------------------
Eight kernel server fixes
- fix use after free due to race in ksmd workqueue handler
- 4 debugging improvements
- fix incorrectly formatted response when client attempts SMB1
- Improve memory allocation to reduce chance of OOM
- Improve delays between retries when killing sessions

----------------------------------------------------------------
Namjae Jeon (7):
      ksmbd: fix malformed unsupported smb1 negotiate response
      ksmbd: use __GFP_RETRY_MAYFAIL
      ksmbd: use msleep instaed of schedule_timeout_interruptible()
      ksmbd: add debug print for rdma capable
      ksmbd: add debug prints to know what smb2 requests were received
      ksmbd: add netdev-up/down event debug print
      ksmbd: add debug print for pending request during server shutdown

Yunseong Kim (1):
      ksmbd: fix use-after-free in SMB request handling

 fs/smb/server/asn1.c              |  6 ++--
 fs/smb/server/auth.c              | 19 ++++++------
 fs/smb/server/connection.c        |  7 +++--
 fs/smb/server/crypto_ctx.c        |  6 ++--
 fs/smb/server/glob.h              |  2 ++
 fs/smb/server/ksmbd_work.c        | 10 +++---
 fs/smb/server/mgmt/ksmbd_ida.c    | 11 ++++---
 fs/smb/server/mgmt/share_config.c | 10 +++---
 fs/smb/server/mgmt/tree_connect.c |  5 +--
 fs/smb/server/mgmt/user_config.c  |  8 ++---
 fs/smb/server/mgmt/user_session.c | 10 +++---
 fs/smb/server/misc.c              | 11 ++++---
 fs/smb/server/ndr.c               | 10 +++---
 fs/smb/server/oplock.c            | 12 ++++----
 fs/smb/server/server.c            |  8 +++--
 fs/smb/server/smb2pdu.c           | 76
+++++++++++++++++++++++++++++----------------
 fs/smb/server/smb_common.c        |  4 +--
 fs/smb/server/smbacl.c            | 23 +++++++-------
 fs/smb/server/transport_ipc.c     |  6 ++--
 fs/smb/server/transport_rdma.c    | 13 +++++---
 fs/smb/server/transport_tcp.c     | 18 +++++++----
 fs/smb/server/unicode.c           |  4 +--
 fs/smb/server/vfs.c               | 12 ++++----
 fs/smb/server/vfs_cache.c         | 10 +++---
 24 files changed, 171 insertions(+), 130 deletions(-)


-- 
Thanks,

Steve

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: CIFS <linux-cifs@vger.kernel.org>, LKML <linux-kernel@vger.kernel.org>
Date: Fri, 29 Nov 2024 19:00:17 -0600

Please pull the following changes since commit
228a1157fb9fec47eb135b51c0202b574e079ebf:

  Merge tag '6.13-rc-part1-SMB3-client-fixes' of
git://git.samba.org/sfrench/cifs-2.6 (2024-11-22 21:54:14 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc-part2-smb3-client-f=
ixes

for you to fetch changes up to 8d7690b3c146f8ae3089918226697bf4e3943032:

  cifs: update internal version number (2024-11-28 09:51:14 -0600)

----------------------------------------------------------------
22 SMB3 client fixes
- Five directory lease fixes
- Three password rotation fixes
- Reconnect Fix
- Two minor cleanups
- Fix for SMB3.02 mounts
- Three DFS (global namespace) fixes
- Six fixes for special file handling (most relating to better
handling various types of symlinks)

There is an important additional directory lease fix (unmount cache
race) being investigated,
and some additional special file handling changesets that need to be
rebased that are not included
in this P/R but will try to send next week.
----------------------------------------------------------------
Dan Carpenter (1):
      cifs: unlock on error in smb3_reconfigure()

Henrique Carvalho (3):
      smb: client: remove unnecessary checks in open_cached_dir()
      smb: client: disable directory caching when dir_cache_timeout is zero
      smb: client: change return value in open_cached_dir_by_dentry() if !c=
fids

Marco Crivellari (1):
      Update misleading comment in cifs_chan_update_iface

Meetakshi Setiya (1):
      cifs: support mounting with alternate password to allow password rota=
tion

Pali Roh=C3=A1r (6):
      cifs: Fix parsing native symlinks relative to the export
      cifs: Validate content of native symlink
      cifs: Add support for parsing WSL-style symlinks
      cifs: Improve guard for excluding $LXDEV xattr
      cifs: Validate content of WSL reparse point buffers
      cifs: Fix parsing reparse point with native symlink in SMB1
non-UNICODE session

Paul Aurich (2):
      smb: During unmount, ensure all cached dir instances drop their dentr=
y
      smb: Initialize cfid->tcon before performing network ops

Paulo Alcantara (6):
      smb: client: fix NULL ptr deref in crypto_aead_setkey()
      smb: client: allow more DFS referrals to be cached
      smb: client: get rid of @nlsc param in cifs_tree_connect()
      smb: client: allow reconnect when sending ioctl
      smb: client: don't try following DFS links in cifs_tree_connect()
      smb: client: fix noisy message when mounting shares

Shyam Prasad N (1):
      cifs: during remount, make sure passwords are in sync

Steve French (1):
      cifs: update internal version number

 fs/smb/client/cached_dir.c | 170 +++++++++++++++++++++++++++++++++++------=
----
 fs/smb/client/cached_dir.h |   6 +-
 fs/smb/client/cifsfs.c     |  12 +++-
 fs/smb/client/cifsfs.h     |   4 +-
 fs/smb/client/cifsglob.h   |   4 +-
 fs/smb/client/cifsproto.h  |   4 +-
 fs/smb/client/cifssmb.c    |  15 ++--
 fs/smb/client/connect.c    |  66 +++++++++++++++---
 fs/smb/client/dfs.c        | 193
++++++---------------------------------------------
 fs/smb/client/dfs_cache.c  |   4 +-
 fs/smb/client/fs_context.c |  85 ++++++++++++++++++++---
 fs/smb/client/fs_context.h |   1 +
 fs/smb/client/inode.c      |   4 +-
 fs/smb/client/reparse.c    | 157 ++++++++++++++++++++++++++++++++++++++---
 fs/smb/client/reparse.h    |   4 +-
 fs/smb/client/sess.c       |   5 +-
 fs/smb/client/smb1ops.c    |   4 +-
 fs/smb/client/smb2file.c   |  21 +++---
 fs/smb/client/smb2inode.c  |   6 +-
 fs/smb/client/smb2ops.c    |  14 ++--
 fs/smb/client/smb2pdu.c    |  20 +++---
 fs/smb/client/smb2proto.h  |   9 ++-
 fs/smb/client/trace.h      |   3 +
 fs/smb/common/smb2pdu.h    |   9 +++
 24 files changed, 523 insertions(+), 297 deletions(-)


--=20
Thanks,

Steve

.
Subject: null-ptr deref found in netfs code
From: Shyam Prasad N <nspmangalore@gmail.com>
To: Steve French <smfrench@gmail.com>, David Howells <dhowells@redhat.com>, 
	CIFS <linux-cifs@vger.kernel.org>
Date: Mon, 2 Dec 2024 07:46:00 +0530

.
Subject: [syzbot] [netfs?] WARNING in netfs_retry_reads (2)
From: syzbot <syzbot+5621e2baf492be382fa9@syzkaller.appspotmail.com>
To: asmadeus@codewreck.org, bharathsm@microsoft.com, brauner@kernel.org, 
	dhowells@redhat.com, ericvh@kernel.org, jlayton@kernel.org, 
	linux-afs@lists.infradead.org, linux-cifs@vger.kernel.org, 
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, 
	linux-trace-kernel@vger.kernel.org, linux_oss@crudebyte.com, lucho@ionkov.net, 
	marc.dionne@auristor.com, mathieu.desnoyers@efficios.com, mhiramat@kernel.org, 
	netfs@lists.linux.dev, pc@manguebit.com, ronniesahlberg@gmail.com, 
	rostedt@goodmis.org, samba-technical@lists.samba.org, sfrench@samba.org, 
	sprasad@microsoft.com, syzkaller-bugs@googlegroups.com, tom@talpey.com, 
	v9fs@lists.linux.dev
Date: Mon, 02 Dec 2024 09:23:23 -0800

.
Subject: xfstest test
From: Steve French <smfrench@gmail.com>
To: David Howells <dhowells@redhat.com>, CIFS <linux-cifs@vger.kernel.org>
Date: Mon, 2 Dec 2024 11:52:08 -0600

.
Subject: [PATCH] ksmbd: retry iterate_dir in smb2_query_dir
From: Hobin Woo <hobin.woo@samsung.com>
To: linux-cifs@vger.kernel.org
Cc: linkinjeon@kernel.org, sfrench@samba.org, senozhatsky@chromium.org,
	tom@talpey.com, sj1557.seo@samsung.com, yoonho.shin@samsung.com,
	moons49.kim@samsung.com, Hobin Woo <hobin.woo@samsung.com>
Date: Thu,  5 Dec 2024 11:31:19 +0900

.
Subject: [GIT PULL] ksmbd server fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: CIFS <linux-cifs@vger.kernel.org>, LKML <linux-kernel@vger.kernel.org>, 
	Namjae Jeon <linkinjeon@kernel.org>
Date: Thu, 5 Dec 2024 10:17:31 -0600

Please pull the following changes since commit
40384c840ea1944d7c5a392e8975ed088ecf0b37:

  Linux 6.13-rc1 (2024-12-01 14:28:56 -0800)

are available in the Git repository at:

  git://git.samba.org/ksmbd.git tags/v6.13-rc1-ksmbd-server-fixes

for you to fetch changes up to 06a025448b572c3bd78dd23a31488a0907cd9512:

  ksmbd: align aux_payload_buf to avoid OOB reads in cryptographic
operations (2024-12-04 19:45:28 -0600)

----------------------------------------------------------------
Four kernel server fixes, most for stable as well
- Three fixes for potential out of bound accesses in read and write paths
  (e.g. when alternate data streams enabled)
- GCC 15 build fix

----------------------------------------------------------------
Brahmajit Das (1):
      smb: server: Fix building with GCC 15

Jordy Zomer (2):
      ksmbd: fix Out-of-Bounds Read in ksmbd_vfs_stream_read
      ksmbd: fix Out-of-Bounds Write in ksmbd_vfs_stream_write

Norbert Szetei (1):
      ksmbd: align aux_payload_buf to avoid OOB reads in cryptographic
operations

 fs/smb/server/smb2pdu.c    | 8 +++++++-
 fs/smb/server/smb_common.c | 4 ++--
 2 files changed, 9 insertions(+), 3 deletions(-)

-- 
Thanks,

Steve

.
Subject: ksmbd: v6.13-rc1 WARNING at fs/attr.c:300 setattr_copy+0x1ee/0x200
From: David Disseldorp <ddiss@suse.de>
To: Namjae Jeon <linkinjeon@kernel.org>
Cc: Jeff Layton <jlayton@kernel.org>, "linux-cifs@vger.kernel.org"
 <linux-cifs@vger.kernel.org>, "linux-fsdevel@vger.kernel.org"
 <linux-fsdevel@vger.kernel.org>
Date: Fri, 6 Dec 2024 16:41:55 +1100

.
Subject: [PATCH] cifs: Fix rmdir failure due to ongoing I/O on deleted file
From: David Howells <dhowells@redhat.com>
To: Steve French <stfrench@microsoft.com>
Date: Fri, 06 Dec 2024 11:06:32 +0000

.
Subject: [PATCH] smb: client: fix potential race in cifs_put_tcon()
From: Paulo Alcantara <pc@manguebit.com>
To: smfrench@gmail.com
Cc: linux-cifs@vger.kernel.org,
	Paulo Alcantara <pc@manguebit.com>
Date: Fri,  6 Dec 2024 11:49:07 -0300

.
Subject: [PATCH] ksmbd: set ATTR_CTIME flags when setting mtime
From: Namjae Jeon <linkinjeon@kernel.org>
To: linux-cifs@vger.kernel.org
Cc: smfrench@gmail.com,
	senozhatsky@chromium.org,
	tom@talpey.com,
	atteh.mailbox@gmail.com,
	Namjae Jeon <linkinjeon@kernel.org>,
	David Disseldorp <ddiss@suse.de>
Date: Sat,  7 Dec 2024 00:38:58 +0900

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: CIFS <linux-cifs@vger.kernel.org>, LKML <linux-kernel@vger.kernel.org>
Date: Sat, 7 Dec 2024 16:22:42 -0600

Please pull the following changes since commit
40384c840ea1944d7c5a392e8975ed088ecf0b37:

  Linux 6.13-rc1 (2024-12-01 14:28:56 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc1-smb3-client-fixes

for you to fetch changes up to c32b624fa4f7ca5a2ff217a0b1b2f1352bb4ec11:

  smb: client: fix potential race in cifs_put_tcon() (2024-12-06 09:14:38 -0600)

----------------------------------------------------------------
Five SMB3 client fixes, also for stable
- DFS fix (for race with tree disconnect and dfs cache worker)
- Four fixes for SMB3.1.1 posix extensions
       - improving special file support e.g. to Samba, retrieving the
file type earlier
       - reducing roundtrips (e.g. on ls -l, in some cases)
----------------------------------------------------------------
Paulo Alcantara (1):
      smb: client: fix potential race in cifs_put_tcon()

Ralph Boehme (3):
      fs/smb/client: avoid querying SMB2_OP_QUERY_WSL_EA for SMB3 POSIX
      fs/smb/client: Implement new SMB3 POSIX type
      fs/smb/client: cifs_prime_dcache() for SMB3 POSIX reparse points

Steve French (1):
      smb3.1.1: fix posix mounts to older servers

 fs/smb/client/cifsproto.h |  1 +
 fs/smb/client/connect.c   |  4 +--
 fs/smb/client/inode.c     | 94
++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 fs/smb/client/readdir.c   | 54 +++++++++++++++++++++-------------
 fs/smb/client/reparse.c   | 84
++++++++++++++++++++++++++++++++---------------------
 fs/smb/client/smb2inode.c |  3 +-
 6 files changed, 175 insertions(+), 65 deletions(-)

-- 
Thanks,

Steve

.
Subject: [PATCH 6.1.y] smb: client: fix potential UAF in cifs_dump_full_key()
From: <jianqi.ren.cn@windriver.com>
To: <pc@manguebit.com>, <gregkh@linuxfoundation.org>
Date: Mon, 9 Dec 2024 12:22:44 +0800

.
Subject: [PATCH 6.1.y] smb: client: fix potential UAF in cifs_dump_full_key()
From: <jianqi.ren.cn@windriver.com>
To: <pc@manguebit.com>, <gregkh@linuxfoundation.org>
Date: Mon, 9 Dec 2024 16:58:13 +0800

.
Subject: [RESEND PATCH] cifs: Use str_yes_no() helper in cifs_ses_add_channel()
From: Thorsten Blum <thorsten.blum@linux.dev>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>,
	Shyam Prasad N <sprasad@microsoft.com>,
	Tom Talpey <tom@talpey.com>,
	Bharath SM <bharathsm@microsoft.com>
Cc: Thorsten Blum <thorsten.blum@linux.dev>,
	linux-cifs@vger.kernel.org,
	samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org
Date: Mon,  9 Dec 2024 12:07:09 +0100

.
Subject: [PATCH][SMB3] fix minor compile warning in parse_reparse_wsl_symlink
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>
Cc: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>
Date: Mon, 9 Dec 2024 11:39:17 -0600

.
Subject: [PATCH] smb: client: destroy cfid_put_wq on module exit
From: Enzo Matsumiya <ematsumiya@suse.de>
To: linux-cifs@vger.kernel.org
Cc: smfrench@gmail.com,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com,
	henrique.carvalho@suse.com
Date: Tue, 10 Dec 2024 10:21:48 -0300

.
Subject: [PATCH 6.1.y] smb: client: fix potential UAF in cifs_dump_full_key()
From: <jianqi.ren.cn@windriver.com>
To: <pc@manguebit.com>, <gregkh@linuxfoundation.org>
Date: Wed, 11 Dec 2024 17:59:50 +0800

.
Subject: [PATCH 6.1.y] smb: client: fix potential UAF in cifs_dump_full_key()
From: <jianqi.ren.cn@windriver.com>
To: <pc@manguebit.com>, <gregkh@linuxfoundation.org>
Date: Wed, 11 Dec 2024 18:15:39 +0800

.
Subject: [GIT PULL] ksmbd server fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Namjae Jeon <linkinjeon@kernel.org>, LKML <linux-kernel@vger.kernel.org>, 
	CIFS <linux-cifs@vger.kernel.org>
Date: Thu, 12 Dec 2024 17:47:08 -0600

Please pull the following changes since commit
fac04efc5c793dccbd07e2d59af9f90b7fc0dca4:

  Linux 6.13-rc2 (2024-12-08 14:03:39 -0800)

are available in the Git repository at:

  git://git.samba.org/ksmbd.git tags/v6.13-rc2-ksmbd-server-fixes

for you to fetch changes up to 21e46a79bbe6c4e1aa73b3ed998130f2ff07b128:

  ksmbd: set ATTR_CTIME flags when setting mtime (2024-12-10 17:48:06 -0600)

----------------------------------------------------------------
Three kernel server fixes:
- fix ctime setting in setattr
- fix reference count on user session to avoid potential race with
session expire
- fix query dir issue
----------------------------------------------------------------
Hobin Woo (1):
      ksmbd: retry iterate_dir in smb2_query_dir

Namjae Jeon (2):
      ksmbd: fix racy issue from session lookup and expire
      ksmbd: set ATTR_CTIME flags when setting mtime

 fs/smb/server/auth.c              |  2 ++
 fs/smb/server/mgmt/user_session.c |  6 +++++-
 fs/smb/server/server.c            |  4 ++--
 fs/smb/server/smb2pdu.c           | 49
++++++++++++++++++++++++++++---------------------
 fs/smb/server/vfs.h               |  1 +
 5 files changed, 38 insertions(+), 24 deletions(-)

-- 
Thanks,

Steve

.
Subject: [PATCH 00/10] netfs, ceph, nfs, cachefiles: Miscellaneous fixes/changes
From: David Howells <dhowells@redhat.com>
To: Christian Brauner <christian@brauner.io>
Cc: David Howells <dhowells@redhat.com>,
	Max Kellermann <max.kellermann@ionos.com>,
	Ilya Dryomov <idryomov@gmail.com>,
	Xiubo Li <xiubli@redhat.com>,
	Trond Myklebust <trondmy@kernel.org>,
	Jeff Layton <jlayton@kernel.org>,
	Matthew Wilcox <willy@infradead.org>,
	netfs@lists.linux.dev,
	linux-afs@lists.infradead.org,
	linux-cifs@vger.kernel.org,
	linux-nfs@vger.kernel.org,
	ceph-devel@vger.kernel.org,
	v9fs@lists.linux.dev,
	linux-erofs@lists.ozlabs.org,
	linux-fsdevel@vger.kernel.org,
	linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Date: Fri, 13 Dec 2024 13:50:00 +0000

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: CIFS <linux-cifs@vger.kernel.org>, LKML <linux-kernel@vger.kernel.org>
Date: Fri, 13 Dec 2024 18:04:51 -0600

Please pull the following changes since commit
fac04efc5c793dccbd07e2d59af9f90b7fc0dca4:

  Linux 6.13-rc2 (2024-12-08 14:03:39 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc2-smb3-client-fixes

for you to fetch changes up to 633609c48a358134d3f8ef8241dff24841577f58:

  smb: client: destroy cfid_put_wq on module exit (2024-12-10 20:47:39 -0600)

----------------------------------------------------------------
four SMB3 client fixes, most also for stable
- fix rmmod leak
- 2 minor cleanups
- fix for unlink/rename with pending i/o
----------------------------------------------------------------
David Howells (1):
      cifs: Fix rmdir failure due to ongoing I/O on deleted file

Enzo Matsumiya (1):
      smb: client: destroy cfid_put_wq on module exit

Steve French (1):
      smb3: fix compiler warning in reparse code

Thorsten Blum (1):
      cifs: Use str_yes_no() helper in cifs_ses_add_channel()

 fs/smb/client/cifsfs.c  | 1 +
 fs/smb/client/inode.c   | 5 ++++-
 fs/smb/client/reparse.c | 2 +-
 fs/smb/client/sess.c    | 4 ++--
 4 files changed, 8 insertions(+), 4 deletions(-)

-- 
Thanks,

Steve

.
Subject: [PATCH] smb: enable reuse of deferred file handles for write operations
From: Bharath SM <bharathsm.hsk@gmail.com>
To: linux-cifs@vger.kernel.org,
	sfrench@samba.org,
	pc@manguebit.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	ronniesahlberg@gmail.com
Cc: Bharath SM <bharathsm@microsoft.com>
Date: Tue, 17 Dec 2024 00:01:48 +0530

.
Subject: [PATCH] smb: use macros instead of constants for leasekey size and default cifsattrs value
From: Bharath SM <bharathsm.hsk@gmail.com>
To: linux-cifs@vger.kernel.org,
	sfrench@samba.org,
	pc@manguebit.com,
	sprasad@microsoft.com
Cc: Bharath SM <bharathsm@microsoft.com>
Date: Tue, 17 Dec 2024 00:09:36 +0530

.
Subject: [PATCH] smb: client: Deduplicate "select NETFS_SUPPORT" in Kconfig
From: Dragan Simic <dsimic@manjaro.org>
To: linux-cifs@vger.kernel.org
Cc: sfrench@samba.org,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com,
	samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org,
	dsimic@manjaro.org
Date: Tue, 17 Dec 2024 10:25:10 +0100

.
Subject: [PATCH][SMB3 client] fix TCP timers deadlock after rmmod
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>
Cc: Kuniyuki Iwashima <kuniyu@amazon.com>, Enzo Matsumiya <ematsumiya@suse.de>
Date: Tue, 17 Dec 2024 21:24:12 -0600

.
Subject: [GIT PULL] ksmbd server fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, Namjae Jeon <linkinjeon@kernel.org>, 
	CIFS <linux-cifs@vger.kernel.org>
Date: Wed, 18 Dec 2024 17:40:56 -0600

Please pull the following changes since commit
78d4f34e2115b517bcbfe7ec0d018bbbb6f9b0b8:

  Linux 6.13-rc3 (2024-12-15 15:58:23 -0800)

are available in the Git repository at:

  git://git.samba.org/ksmbd.git tags/v6.13-rc3-ksmbd-server-fixes

for you to fetch changes up to fe4ed2f09b492e3507615a053814daa8fafdecb1:

  ksmbd: conn lock to serialize smb2 negotiate (2024-12-15 22:20:03 -0600)

----------------------------------------------------------------
three kernel server fixes
- Two fixes for better handling maximum outstanding requests
- Fix simultaneous negotiate protocol race
----------------------------------------------------------------
Marios Makassikis (2):
      ksmbd: count all requests in req_running counter
      ksmbd: fix broken transfers when exceeding max simultaneous operations

Namjae Jeon (1):
      ksmbd: conn lock to serialize smb2 negotiate

 fs/smb/server/connection.c    | 18 ++++++++++++++----
 fs/smb/server/connection.h    |  1 -
 fs/smb/server/server.c        |  7 +------
 fs/smb/server/server.h        |  1 +
 fs/smb/server/smb2pdu.c       |  2 ++
 fs/smb/server/transport_ipc.c |  5 ++++-
 6 files changed, 22 insertions(+), 12 deletions(-)

-- 
Thanks,

Steve

.
Subject: [PATCH] smb: fix bytes written value in /proc/fs/cifs/Stats
From: Bharath SM <bharathsm.hsk@gmail.com>
To: linux-cifs@vger.kernel.org,
	dhowells@redhat.com,
	sfrench@samba.org,
	sprasad@microsoft.com,
	pc@manguebit.com
Cc: Bharath SM <bharathsm@microsoft.com>
Date: Thu, 19 Dec 2024 23:28:50 +0530

.
Subject: [PATCH] cifs: Remove unused is_server_using_iface()
From: linux@treblig.org
To: sfrench@samba.org,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com
Cc: linux-cifs@vger.kernel.org,
	samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org,
	"Dr. David Alan Gilbert" <linux@treblig.org>
Date: Fri, 20 Dec 2024 21:59:37 +0000

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Fri, 20 Dec 2024 21:27:28 -0600

Please pull the following changes since commit
78d4f34e2115b517bcbfe7ec0d018bbbb6f9b0b8:

  Linux 6.13-rc3 (2024-12-15 15:58:23 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc3-SMB3-client-fixes

for you to fetch changes up to 92941c7f2c9529fac1b2670482d0ced3b46eac70:

  smb: fix bytes written value in /proc/fs/cifs/Stats (2024-12-19
12:14:11 -0600)

----------------------------------------------------------------
Four smb3 client fixes
- fix regression in display of write stats
- fix rmmod failure with network namespaces
- two minor cleanup
----------------------------------------------------------------
Bharath SM (2):
      smb: use macros instead of constants for leasekey size and
default cifsattrs value
      smb: fix bytes written value in /proc/fs/cifs/Stats

Dragan Simic (1):
      smb: client: Deduplicate "select NETFS_SUPPORT" in Kconfig

Enzo Matsumiya (1):
      smb: client: fix TCP timers deadlock after rmmod

 fs/smb/client/Kconfig   |  1 -
 fs/smb/client/cifsfs.c  |  2 +-
 fs/smb/client/connect.c | 36 ++++++++++++++++++++++++++----------
 fs/smb/client/smb2pdu.c |  5 ++++-
 4 files changed, 31 insertions(+), 13 deletions(-)

-- 
Thanks,

Steve

.
Subject: [PATCH 0/4] cifs: Handle all name surrogate reparse points
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Sun, 22 Dec 2024 15:58:41 +0100

.
Subject: [PATCH 0/4] cifs: Fix gettting and setting parts of security descriptor
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Sun, 22 Dec 2024 16:10:47 +0100

.
Subject: [PATCH 0/4] cifs: Add support for querying reparse points from userspace
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Sun, 22 Dec 2024 16:43:36 +0100

.
Subject: [PATCH 0/6] cifs: Fix connections over NetBIOS session
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Sun, 22 Dec 2024 17:30:44 +0100

.
Subject: [PATCH] cifs: Implement is_network_name_deleted for SMB1
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Sun, 22 Dec 2024 18:14:31 +0100

.
Subject: [PATCH 0/3] cifs: Cleanup of duplicated structures
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>,
	Namjae Jeon <linkinjeon@kernel.org>,
	Sergey Senozhatsky <senozhatsky@chromium.org>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Sun, 22 Dec 2024 18:24:01 +0100

.
Subject: [PATCH] ksmbd: fix a missing return value check bug
From: Wentao Liang <liangwentao@iscas.ac.cn>
To: stfrench@microsoft.com,
	linkinjeon@kernel.org,
	chenxiaosong@kylinos.cn,
	thorsten.blum@linux.dev
Cc: liangwentao@iscas.ac.cn,
	linux-cifs@vger.kernel.org
Date: Mon, 23 Dec 2024 23:30:50 +0800

.
Subject: [PATCH v2] cifs: Fix getting reparse points from servers without EAs support
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Tue, 24 Dec 2024 14:18:59 +0100

.
Subject: [PATCH] cifs: Update description about ACL permissions
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>,
	Ronnie Sahlberg <ronniesahlberg@gmail.com>,
	Namjae Jeon <linkinjeon@kernel.org>,
	Sergey Senozhatsky <senozhatsky@chromium.org>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Tue, 24 Dec 2024 16:08:29 +0100

.
Subject: Errno codes from symlink() syscall
From: Pali =?utf-8?B?Um9ow6Fy?= <pali@kernel.org>
To: linux-fsdevel@vger.kernel.org, linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Cc: Steve French <sfrench@samba.org>,
	Alexander Viro <viro@zeniv.linux.org.uk>,
	Christian Brauner <brauner@kernel.org>, Jan Kara <jack@suse.cz>
Date: Tue, 24 Dec 2024 17:05:35 +0100

.
Subject: [PATCH 5.10/5.15 1/1] smb: client: fix use-after-free bug in cifs_debug_data_proc_show()
From: d.privalov <d.privalov@omp.ru>
To: Steve French <sfrench@samba.org>
Date: Thu, 26 Dec 2024 12:25:15 +0300

.
Subject: [PATCH cifs-utils] configure.ac: libtalloc is now mandatory
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
To: Pavel Shilovsky <pshilovsky@samba.org>
Cc: linux-cifs@vger.kernel.org,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: Thu, 26 Dec 2024 21:42:12 +0100

.
Subject: [PATCH cifs-utils] cldap_ping.c: add missing <sys/types.h> include
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
To: Pavel Shilovsky <pshilovsky@samba.org>
Cc: linux-cifs@vger.kernel.org,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: Thu, 26 Dec 2024 21:42:35 +0100

.
Subject: Immutable vs read-only for Windows compatibility
From: Pali =?utf-8?B?Um9ow6Fy?= <pali@kernel.org>
To: linux-fsdevel@vger.kernel.org, linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Cc: Steve French <sfrench@samba.org>,
	Alexander Viro <viro@zeniv.linux.org.uk>,
	Christian Brauner <brauner@kernel.org>, Jan Kara <jack@suse.cz>
Date: Fri, 27 Dec 2024 13:15:08 +0100

.
Subject: [PATCH] cifs: Remove intermediate object of failed create SFU call
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Fri, 27 Dec 2024 18:36:43 +0100

.
Subject: [PATCH 1/2] cifs: Add missing NT_STATUS_* codes from nterr.h to nterr.c
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Fri, 27 Dec 2024 18:37:08 +0100

.
Subject: [PATCH 1/4] cifs: Remove symlink member from cifs_open_info_data union
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Fri, 27 Dec 2024 18:38:38 +0100

.
Subject: [PATCH 1/3] cifs: Remove declaration of dead CIFSSMBQuerySymLink function
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Fri, 27 Dec 2024 18:40:45 +0100

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Fri, 27 Dec 2024 20:42:14 -0600

Please pull the following changes since commit
4bbf9020becbfd8fc2c3da790855b7042fad455b:

  Linux 6.13-rc4 (2024-12-22 13:22:21 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc4-SMB3-client-fixes

for you to fetch changes up to f17224c2a7bdc11a17c96d9d8cb2d829f54d40bb:

  cifs: Remove unused is_server_using_iface() (2024-12-23 08:06:05 -0600)

----------------------------------------------------------------
Two smb3 client fixes
- fix caching of files that will be reused for write
- minor cleanup
----------------------------------------------------------------
Bharath SM (1):
      smb: enable reuse of deferred file handles for write operations

Dr. David Alan Gilbert (1):
      cifs: Remove unused is_server_using_iface()

 fs/smb/client/cifsproto.h |  2 --
 fs/smb/client/file.c      |  6 +++++-
 fs/smb/client/sess.c      | 25 -------------------------
 3 files changed, 5 insertions(+), 28 deletions(-)


-- 
Thanks,

Steve

.
Subject: [PATCH] ksmbd: Remove unneeded if check in ksmbd_rdma_capable_netdev()
From: Thorsten Blum <thorsten.blum@linux.dev>
To: Namjae Jeon <linkinjeon@kernel.org>,
	Steve French <sfrench@samba.org>,
	Sergey Senozhatsky <senozhatsky@chromium.org>,
	Tom Talpey <tom@talpey.com>
Cc: Thorsten Blum <thorsten.blum@linux.dev>,
	linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Mon, 30 Dec 2024 13:44:56 +0100

.
Subject: =?UTF-8?Q?NEW_45w_wall_charger-GAN!?=
From: =?UTF-8?Q?Vicky?= <sokevicky@126.com>
To: linux-cifs@vger.kernel.org
Date: Tue, 31 Dec 2024 0:07:57 +0800

.
Subject: [cifs:for-next-next] [smb3 client]  8f97b4a68e: mount cifs failed
From: kernel test robot <oliver.sang@intel.com>
To: Steve French <stfrench@microsoft.com>
Date: Tue, 31 Dec 2024 09:49:05 +0800

.
Subject: [linux-next:master] [netfs]  b4f239c91f:
 WARNING:at_kernel/sched/core.c:#__might_sleep
From: kernel test robot <oliver.sang@intel.com>
To: David Howells <dhowells@redhat.com>
Date: Tue, 31 Dec 2024 13:49:05 +0800

.
Subject: [PATCH 1/5] cifs: Fix access_flags_to_smbopen_mode
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Tue, 31 Dec 2024 23:35:10 +0100

.
Subject: [PATCH 1/2] cifs: Do not attempt to call CIFSSMBRenameOpenFile() without CAP_INFOLEVEL_PASSTHRU
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Tue, 31 Dec 2024 23:35:48 +0100

.
Subject: [PATCH] cifs: Fix querying and creating MF symlinks over SMB1
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Tue, 31 Dec 2024 23:36:10 +0100

.
Subject: [PATCH 01/12] cifs: Fix struct FILE_ALL_INFO
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Tue, 31 Dec 2024 23:36:31 +0100

.
Subject: [PATCH] cifs: Correctly set SMB1 SessionKey field in Session Setup Request
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Wed,  1 Jan 2025 14:07:34 +0100

.
Subject: [PATCH] cifs: Fix endian types in struct rfc1002_session_packet
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Wed,  1 Jan 2025 14:21:24 +0100

.
Subject: Bug in getting file attributes with SMB3.1.1 and posix
From: Oleh Nykyforchyn <oleh.nyk@gmail.com>
To: linux-cifs@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Steve French <sfrench@samba.org>
Date: Wed, 1 Jan 2025 20:08:06 +0200

.
Subject: [PATCH] cifs: Use cifs_autodisable_serverino() for disabling CIFS_MOUNT_SERVER_INUM in readdir.c
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali@kernel.org>
To: Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@manguebit.com>
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Fri,  3 Jan 2025 00:02:31 +0100

.
Subject: [PATCH 1/4] smb: client: introduce av_for_each_entry() helper
From: Paulo Alcantara <pc@manguebit.com>
To: smfrench@gmail.com
Cc: linux-cifs@vger.kernel.org,
	Paulo Alcantara <pc@manguebit.com>
Date: Fri,  3 Jan 2025 19:28:55 -0300

.
Subject: [PATCH 1/4] smb: client: introduce av_for_each_entry() helper
From: Paulo Alcantara <pc@manguebit.com>
To: smfrench@gmail.com
Cc: linux-cifs@vger.kernel.org
Date: Fri,  3 Jan 2025 19:25:31 -0300

.
Subject: [PATCH 1/2] ksmbd: fix possibly wrong init value for RDMA buffer size
From: He Wang <xw897002528@gmail.com>
To: 
Cc: He Wang <xw897002528@gmail.com>,
	Namjae Jeon <linkinjeon@kernel.org>,
	Steve French <sfrench@samba.org>,
	Sergey Senozhatsky <senozhatsky@chromium.org>,
	Tom Talpey <tom@talpey.com>,
	linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org
Date: Mon,  6 Jan 2025 03:39:53 +0000

.
Subject: [cifs:for-next-next 13/13] fs/smb/client/fs_context.c:1466
 smb3_fs_context_parse_param() warn: statement has no effect 22
From: Dan Carpenter <dan.carpenter@linaro.org>
To: oe-kbuild@lists.linux.dev, Steve French <stfrench@microsoft.com>
Cc: lkp@intel.com, oe-kbuild-all@lists.linux.dev,
	linux-cifs@vger.kernel.org, samba-technical@lists.samba.org
Date: Mon, 6 Jan 2025 12:24:00 +0300

.
Subject: [PATCH] ksmbd: Implement new SMB3 POSIX type
From: Namjae Jeon <linkinjeon@kernel.org>
To: linux-cifs@vger.kernel.org
Cc: smfrench@gmail.com,
	senozhatsky@chromium.org,
	tom@talpey.com,
	atteh.mailbox@gmail.com,
	Namjae Jeon <linkinjeon@kernel.org>
Date: Tue,  7 Jan 2025 17:43:35 +0900

.
Subject: [PATCH] netfs: Fix kernel async DIO
From: David Howells <dhowells@redhat.com>
To: Christian Brauner <brauner@kernel.org>
Date: Tue, 07 Jan 2025 18:39:27 +0000

.
Subject: [PATCH] smb: client: sync the root session and superblock context passwords before automounting
From: meetakshisetiyaoss@gmail.com
To: sfrench@samba.org,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	nspmangalore@gmail.com,
	tom@talpey.com,
	linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	samba-technical@lists.samba.org,
	bharathsm.hsk@gmail.com,
	bharathsm@microsoft.com
Cc: Meetakshi Setiya <msetiya@microsoft.com>
Date: Wed,  8 Jan 2025 05:10:34 -0500

.
Subject: [GIT PULL] ksmbd server fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>, 
	Namjae Jeon <linkinjeon@kernel.org>
Date: Thu, 9 Jan 2025 18:37:19 -0600

Please pull the following changes since commit
9d89551994a430b50c4fffcb1e617a057fa76e20:

  Linux 6.13-rc6 (2025-01-05 14:13:40 -0800)

are available in the Git repository at:

  git://git.samba.org/ksmbd.git tags/6.13-rc6-ksmbd-server-fixes

for you to fetch changes up to e8580b4c600e085b3c8e6404392de2f822d4c132:

  ksmbd: Implement new SMB3 POSIX type (2025-01-07 18:48:49 -0600)

----------------------------------------------------------------
Four ksmbd server fixes, most also for stable
- fix for reporting special file type more accurately when POSIX
extensions negotiated
- minor cleanup
- fix possible incorrect creation path when dirname is not present.
In some cases, Windows's apps create files without checking if they exist.
- fix potential NULL pointer dereference sending interim response
----------------------------------------------------------------
He Wang (1):
      ksmbd: fix unexpectedly changed path in ksmbd_vfs_kern_path_locked

Namjae Jeon (1):
      ksmbd: Implement new SMB3 POSIX type

Thorsten Blum (1):
      ksmbd: Remove unneeded if check in ksmbd_rdma_capable_netdev()

Wentao Liang (1):
      ksmbd: fix a missing return value check bug

 fs/smb/server/smb2pdu.c        | 43 +++++++++++++++++++++++++++++++++++++++++++
 fs/smb/server/smb2pdu.h        | 10 ++++++++++
 fs/smb/server/transport_rdma.c |  3 +--
 fs/smb/server/vfs.c            |  3 ++-
 4 files changed, 56 insertions(+), 3 deletions(-)

-- 
Thanks,

Steve

.
Subject: [PATCH] cifs: support reconnect with alternate password for SMB1
From: meetakshisetiyaoss@gmail.com
To: sfrench@samba.org,
	pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	nspmangalore@gmail.com,
	tom@talpey.com,
	linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	samba-technical@lists.samba.org,
	bharathsm.hsk@gmail.com,
	bharathsm@microsoft.com
Cc: Meetakshi Setiya <msetiya@microsoft.com>
Date: Fri, 10 Jan 2025 07:10:27 -0500

.
Subject: [GIT PULL] smb3 client fix
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Sat, 11 Jan 2025 10:08:03 -0600

Please pull the following changes since commit
9d89551994a430b50c4fffcb1e617a057fa76e20:

  Linux 6.13-rc6 (2025-01-05 14:13:40 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc6-SMB3-client-fix

for you to fetch changes up to 20b1aa912316ffb7fbb5f407f17c330f2a22ddff:

  smb: client: sync the root session and superblock context passwords
before automounting (2025-01-10 17:55:35 -0600)

----------------------------------------------------------------
DFS (smb3 global namespace) client fix
- fix unneeded session setup retry due to stale password e.g. for DFS automounts

----------------------------------------------------------------
Meetakshi Setiya (1):
      smb: client: sync the root session and superblock context
passwords before automounting

 fs/smb/client/namespace.c | 19 ++++++++++++++++++-

-- 
Thanks,

Steve

.
Subject: [PATCH] ksmbd: Remove unused functions
From: linux@treblig.org
To: linkinjeon@kernel.org,
	sfrench@samba.org,
	senozhatsky@chromium.org,
	tom@talpey.com
Cc: linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	"Dr. David Alan Gilbert" <linux@treblig.org>
Date: Sun, 12 Jan 2025 15:16:37 +0000

.
Subject: Negative dentries on Linux SMB filesystems
From: Shyam Prasad N <nspmangalore@gmail.com>
To: Steve French <smfrench@gmail.com>, Paulo Alcantara <pc@manguebit.com>, 
	Bharath SM <bharathsm.hsk@gmail.com>, CIFS <linux-cifs@vger.kernel.org>, 
	David Howells <dhowells@redhat.com>
Date: Mon, 13 Jan 2025 11:08:51 +0530

.
Subject: [PATCH RESEND] ksmbd: fix integer overflows on 32 bit systems
From: Dan Carpenter <dan.carpenter@linaro.org>
To: Namjae Jeon <linkinjeon@kernel.org>
Cc: Steve French <sfrench@samba.org>,
	Sergey Senozhatsky <senozhatsky@chromium.org>,
	Tom Talpey <tom@talpey.com>, linux-cifs@vger.kernel.org,
	linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Date: Mon, 13 Jan 2025 09:17:48 +0300

.
Subject: [PATCH] smb: client: fix double free of TCP_Server_Info::hostname
From: Paulo Alcantara <pc@manguebit.com>
To: smfrench@gmail.com
Cc: linux-cifs@vger.kernel.org,
	Jay Shin <jaeshin@redhat.com>
Date: Tue, 14 Jan 2025 12:48:48 -0300

.
Subject: [PATCH 1/2] cifscreds: use continue instead of break when matching commands
From: tbecker@redhat.com
To: linux-cifs@vger.kernel.org
Cc: Thiago Becker <tbecker@redhat.com>
Date: Tue, 14 Jan 2025 17:34:49 -0300

.
Subject: [PATCH 2/2] cifscreds: allow user to set the key's timeout
From: tbecker@redhat.com
To: linux-cifs@vger.kernel.org
Cc: Thiago Becker <tbecker@redhat.com>
Date: Tue, 14 Jan 2025 17:35:09 -0300

.
Subject: [PATCH] smb: client: correctly handle ErrorContextData as a flexible array
From: Liang Jie <buaajxlj@163.com>
To: sfrench@samba.org
Cc: pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com,
	linux-cifs@vger.kernel.org,
	samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org,
	Liang Jie <liangjie@lixiang.com>
Date: Thu, 16 Jan 2025 15:29:48 +0800

.
Subject: [PATCH] smb: client: fix oops due to unset link speed
From: Paulo Alcantara <pc@manguebit.com>
To: smfrench@gmail.com
Cc: linux-cifs@vger.kernel.org,
	Shyam Prasad N <nspmangalore@gmail.com>,
	Tom Talpey <tom@talpey.com>,
	Frank Sorenson <sorenson@redhat.com>,
	Jay Shin <jaeshin@redhat.com>
Date: Thu, 16 Jan 2025 14:29:03 -0300

.
Subject: linux-next: build failure after merge of the cifs tree
From: Stephen Rothwell <sfr@canb.auug.org.au>
To: Steve French <smfrench@gmail.com>
Cc: "Paulo Alcantara (Red Hat)" <pc@manguebit.com>, Steve French
 <stfrench@microsoft.com>, CIFS <linux-cifs@vger.kernel.org>, Linux Kernel
 Mailing List <linux-kernel@vger.kernel.org>, Linux Next Mailing List
 <linux-next@vger.kernel.org>
Date: Fri, 17 Jan 2025 08:59:58 +1100

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Thu, 16 Jan 2025 22:49:00 -0600

Please pull the following changes since commit
5bc55a333a2f7316b58edc7573e8e893f7acb532:

  Linux 6.13-rc7 (2025-01-12 14:37:56 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/6.13-rc7-SMB3-client-fixes

for you to fetch changes up to fa2f9906a7b333ba757a7dbae0713d8a5396186e:

  smb: client: fix double free of TCP_Server_Info::hostname
(2025-01-15 16:56:06 -0600)

----------------------------------------------------------------
two client fixes, both for stable
- fix double free when reconnect racing with closing session
- fix SMB1 reconnect with password rotation

----------------------------------------------------------------
Meetakshi Setiya (1):
      cifs: support reconnect with alternate password for SMB1

Paulo Alcantara (1):
      smb: client: fix double free of TCP_Server_Info::hostname

 fs/smb/client/cifssmb.c | 11 ++++++++++-
 fs/smb/client/connect.c |  3 +--
 2 files changed, 11 insertions(+), 3 deletions(-)

--
Thanks,

Steve

.
Subject: [PATCH v2] smb: client: correctly handle ErrorContextData as a flexible array
From: Liang Jie <buaajxlj@163.com>
To: sfrench@samba.org,
	tom@talpey.com
Cc: pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	fanggeng@lixiang.com,
	yangchen11@lixiang.com,
	bharathsm@microsoft.com,
	linux-cifs@vger.kernel.org,
	samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org,
	Liang Jie <liangjie@lixiang.com>
Date: Sat, 18 Jan 2025 20:35:28 +0800

.
Subject: [PATCH] smb: client: fix order of arguments of tracepoints
From: Ruben Devos <devosruben6@gmail.com>
To: sfrench@samba.org
Cc: pc@manguebit.com,
	ronniesahlberg@gmail.com,
	sprasad@microsoft.com,
	tom@talpey.com,
	bharathsm@microsoft.com,
	linux-cifs@vger.kernel.org,
	Ruben Devos <devosruben6@gmail.com>
Date: Sat, 18 Jan 2025 21:03:30 +0100

.
Subject: [PATCH 28/71] cifs: Allow to disable or force initialization of
 NetBIOS session
From: Steve French <smfrench@gmail.com>
To: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>
Cc: CIFS <linux-cifs@vger.kernel.org>
Date: Sun, 19 Jan 2025 13:04:05 -0600

.
Subject: [PATCH] cifs: Fix endian types in struct rfc1002_session_packet
From: Steve French <smfrench@gmail.com>
To: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>
Cc: CIFS <linux-cifs@vger.kernel.org>
Date: Sun, 19 Jan 2025 13:21:39 -0600

.
Subject: [PATCH 34/71] cifs: Set default Netbios RFC1001 server name to
 hostname in UNC
From: Steve French <smfrench@gmail.com>
To: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>
Cc: CIFS <linux-cifs@vger.kernel.org>
Date: Sun, 19 Jan 2025 19:38:23 -0600

.
Subject: [PATCH] cifs: Fix printing Status code into dmesg
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>, 
	samba-technical <samba-technical@lists.samba.org>
Cc: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>
Date: Sun, 19 Jan 2025 19:48:39 -0600

.
Subject: Preparing for cifs-utils version 7.2
From: Steve French <smfrench@gmail.com>
To: samba-technical <samba-technical@lists.samba.org>, CIFS <linux-cifs@vger.kernel.org>
Cc: Paulo Alcantara <pc@manguebit.com>, Pavel Shilovsky <piastryyy@gmail.com>, 
	Thiago Becker <tbecker@redhat.com>, Henrique Carvalho <henrique.carvalho@suse.com>, 
	Ritvik Budhiraja <budhirajaritviksmb@gmail.com>, Bharath S M <bharathsm@microsoft.com>, 
	Meetakshi Setiya <meetakshisetiyaoss@gmail.com>, =?UTF-8?Q?Pavel_Filipensk=C3=BD?= <pfilipensky@samba.org>, 
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: Mon, 20 Jan 2025 14:41:55 -0600

.
Subject: [PATCH][cifs-utils] avoid using mktemp when updating mtab
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>, 
	samba-technical <samba-technical@lists.samba.org>
Cc: Carlos Maiolino <cmaiolino@redhat.com>
Date: Mon, 20 Jan 2025 18:49:17 -0600

.
Subject: [GIT PULL] ksmbd server fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, Namjae Jeon <linkinjeon@kernel.org>, 
	CIFS <linux-cifs@vger.kernel.org>
Date: Wed, 22 Jan 2025 17:51:51 -0600

Please pull the following changes since commit
5bc55a333a2f7316b58edc7573e8e893f7acb532:

  Linux 6.13-rc7 (2025-01-12 14:37:56 -0800)

are available in the Git repository at:

  git://git.samba.org/ksmbd.git tags/v6.14-rc-ksmbd-server-fixes

for you to fetch changes up to aab98e2dbd648510f8f51b83fbf4721206ccae45:

  ksmbd: fix integer overflows on 32 bit systems (2025-01-15 23:24:51 -0600)

----------------------------------------------------------------
Three ksmbd server fixes
- Fix potential memory corruption in IPC calls
- Support FSCTL_QUERY_INTERFACE_INFO for more configurations
- Remove some unused functions
----------------------------------------------------------------
Dan Carpenter (1):
      ksmbd: fix integer overflows on 32 bit systems

Dr. David Alan Gilbert (1):
      ksmbd: Remove unused functions

Namjae Jeon (1):
      ksmbd: browse interfaces list on FSCTL_QUERY_INTERFACE_INFO IOCTL

 fs/smb/server/ksmbd_netlink.h |  3 +-
 fs/smb/server/server.h        |  1 +
 fs/smb/server/smb2pdu.c       |  4 +++
 fs/smb/server/transport_ipc.c | 35 +++++++---------------
 fs/smb/server/transport_ipc.h |  2 --
 fs/smb/server/transport_tcp.c | 73
++++++++++++++++++++-------------------------
 fs/smb/server/transport_tcp.h |  1 +
 fs/smb/server/vfs.c           |  7 -----
 fs/smb/server/vfs.h           |  1 -
 9 files changed, 50 insertions(+), 77 deletions(-)

-- 
Thanks,

Steve

.
Subject: [GIT PULL] smb3 client fixes
From: Steve French <smfrench@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: CIFS <linux-cifs@vger.kernel.org>, LKML <linux-kernel@vger.kernel.org>
Date: Thu, 23 Jan 2025 15:23:33 -0600

Please pull the following changes since commit
ffd294d346d185b70e28b1a28abe367bbfe53c04:

  Linux 6.13 (2025-01-19 15:51:45 -0800)

are available in the Git repository at:

  git://git.samba.org/sfrench/cifs-2.6.git tags/v6.14-rc-smb3-client-fixes-=
part

for you to fetch changes up to 3681c74d342db75b0d641ba60de27bf73e16e66b:

  smb: client: handle lack of EA support in smb2_query_path_info()
(2025-01-22 20:13:49 -0600)

----------------------------------------------------------------
twenty three smb3 client fixes, many DFS related
- Fix oops in DebugData when link speed 0
- Two reparse point fixes
- Ten DFS (global namespace) fixes
- Symlink error handling fix
- Two SMB1 fixes
- Four cleanup fixes
- Improved debugging of status codes
- Fix incorrect output of tracepoints for compounding, and add missing
compounding tracepoint

----------------------------------------------------------------
Liang Jie (1):
      smb: client: correctly handle ErrorContextData as a flexible array

Pali Roh=C3=A1r (8):
      cifs: Use cifs_autodisable_serverino() for disabling
CIFS_MOUNT_SERVER_INUM in readdir.c
      cifs: Fix endian types in struct rfc1002_session_packet
      cifs: Add missing NT_STATUS_* codes from nterr.h to nterr.c
      cifs: Fix printing Status code into dmesg
      cifs: Remove declaration of dead CIFSSMBQuerySymLink function
      cifs: Do not attempt to call CIFSSMBRenameOpenFile() without
CAP_INFOLEVEL_PASSTHRU
      cifs: Do not attempt to call CIFSGetSrvInodeNumber() without
CAP_INFOLEVEL_PASSTHRU
      cifs: Remove duplicate struct reparse_symlink_data and
SYMLINK_FLAG_RELATIVE

Paulo Alcantara (12):
      smb: client: introduce av_for_each_entry() helper
      smb: client: parse av pair type 4 in CHALLENGE_MESSAGE
      smb: client: fix DFS mount against old servers with NTLMSSP
      smb: client: parse DNS domain name from domain=3D option
      smb: client: provide dns_resolve_{unc,name} helpers
      smb: client: optimize referral walk on failed link targets
      smb: client: fix return value of parse_dfs_referrals()
      smb: client: don't retry DFS targets on server shutdown
      smb: client: fix oops due to unset link speed
      smb: client: get rid of TCP_Server_Info::refpath_lock
      smb: client: don't check for @leaf_fullpath in match_server()
      smb: client: handle lack of EA support in smb2_query_path_info()

Ruben Devos (1):
      smb: client: fix order of arguments of tracepoints

Steve French (1):
      smb3: add missing tracepoint for querying wsl EAs

 fs/smb/client/cifsencrypt.c | 162 +++++++++++++++++------------------
 fs/smb/client/cifsglob.h    |  35 +++++---
 fs/smb/client/cifspdu.h     |  18 +---
 fs/smb/client/cifsproto.h   |   5 +-
 fs/smb/client/connect.c     | 133 +++++++++++------------------
 fs/smb/client/dfs.c         |  80 ++++++++----------
 fs/smb/client/dfs.h         |  44 +++++++---
 fs/smb/client/dfs_cache.c   |  20 ++---
 fs/smb/client/dir.c         |   6 +-
 fs/smb/client/dns_resolve.c | 108 ++++++++++++-----------
 fs/smb/client/dns_resolve.h |  23 ++++-
 fs/smb/client/fs_context.c  |   4 +
 fs/smb/client/fs_context.h  |   1 +
 fs/smb/client/inode.c       |   7 ++
 fs/smb/client/misc.c        |  29 +++----
 fs/smb/client/netmisc.c     |   4 +-
 fs/smb/client/nterr.c       |   8 ++
 fs/smb/client/readdir.c     |   2 +-
 fs/smb/client/rfc1002pdu.h  |   6 +-
 fs/smb/client/smb1ops.c     |   6 ++
 fs/smb/client/smb2file.c    |   4 +-
 fs/smb/client/smb2inode.c   | 202 +++++++++++++++++++++++++++-------------=
----
 fs/smb/client/smb2ops.c     |   9 +-
 fs/smb/client/smb2pdu.h     |   2 +-
 fs/smb/client/trace.h       |   1 +
 25 files changed, 483 insertions(+), 436 deletions(-)

--
Thanks,

Steve

.
Subject: Regression: smb: chmod ignored (5.14.0-427.40.1.el9_4 vs.
 5.14.0-503.15.1.el9_5)
From: "Reiterer, Horst" <horst.reiterer@fabasoft.com>
To: "linux-cifs@vger.kernel.org" <linux-cifs@vger.kernel.org>
Date: Fri, 24 Jan 2025 23:05:17 +0000

.
Subject: RE: Regression: smb: chmod ignored (5.14.0-427.40.1.el9_4 vs.
 5.14.0-503.15.1.el9_5)
From: "Reiterer, Horst" <horst.reiterer@fabasoft.com>
To: "pc@manguebit.com" <pc@manguebit.com>
Date: Sat, 25 Jan 2025 22:22:43 +0000

.
Subject: [BUG REPORT] cifs: Deadlock due to network reconnection during file
 writing
From: Wang Zhaolong <wangzhaolong1@huawei.com>
To: <stable@vger.kernel.org>, <sfrench@samba.org>
Date: Sun, 26 Jan 2025 15:36:26 +0800

.
Subject: warning building cifs in recent mainline
From: Steve French <smfrench@gmail.com>
To: David Howells <dhowells@redhat.com>, Vinicius Costa Gomes <vinicius.gomes@intel.com>, 
	Christian Brauner <brauner@kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Date: Sun, 26 Jan 2025 23:40:55 -0600

.
Subject: [PATCHES][SMB3 client] additional patches in for-next for error
 translation and reparse points
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>
Cc: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>
Date: Sun, 26 Jan 2025 23:49:45 -0600

.
Subject: [PATCH] netfs: Fix a number of read-retry hangs
From: David Howells <dhowells@redhat.com>
To: Ihor Solodrai <ihor.solodrai@pm.me>,
    Marc Dionne <marc.dionne@auristor.com>,
    Steve French <stfrench@microsoft.com>
Date: Tue, 28 Jan 2025 00:33:05 +0000

.
Subject: [PATCH][SMB3 client] allow us to get kerberos ticket when server
 advertises IAKerb
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>
Date: Tue, 28 Jan 2025 01:13:14 -0600

.
Subject: parse_reparse_point confusing function name
From: Steve French <smfrench@gmail.com>
To: CIFS <linux-cifs@vger.kernel.org>
Cc: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>, 
	Paulo Alcantara <pc@manguebit.com>
Date: Wed, 29 Jan 2025 16:23:38 -0600

.
Subject: Re: [PATCH 18/62] cifs: Check if server supports reparse points
 before using them
From: Steve French <smfrench@gmail.com>
To: =?UTF-8?Q?Pali_Roh=C3=A1r?= <pali@kernel.org>, 
	CIFS <linux-cifs@vger.kernel.org>
Date: Wed, 29 Jan 2025 17:39:24 -0600

.
Subject: [PATCH 6.1] smb: client: fix UAF in async decryption
From: Anastasia Belova <abelova@astralinux.ru>
To: stable@vger.kernel.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Anastasia Belova <abelova@astralinux.ru>,
	Steve French <sfrench@samba.org>,
	Paulo Alcantara <pc@cjr.nz>,
	Ronnie Sahlberg <lsahlber@redhat.com>,
	Shyam Prasad N <sprasad@microsoft.com>,
	Tom Talpey <tom@talpey.com>,
	linux-cifs@vger.kernel.org,
	samba-technical@lists.samba.org,
	linux-kernel@vger.kernel.org,
	lvc-project@linuxtesting.org,
	Enzo Matsumiya <ematsumiya@suse.de>,
	Steve French <stfrench@microsoft.com>,
	Sasha Levin <sashal@kernel.org>
Date: Thu, 30 Jan 2025 12:43:50 +0300

.
Subject: [PATCH] cifs-utils: add documentation for upcall_target
From: Ritvik Budhiraja <budhirajaritviksmb@gmail.com>
To: linux-cifs@vger.kernel.org, Shyam Prasad <nspmangalore@gmail.com>, 
	Bharath SM <bharathsm.hsk@gmail.com>
Date: Thu, 30 Jan 2025 06:43:37 -0800

.
