All of lore.kernel.org
 help / color / mirror / Atom feed
From: Trond Myklebust <trondmy@hammerspace.com>
To: "torvalds@linux-foundation.org" <torvalds@linux-foundation.org>
Cc: "linux-nfs@vger.kernel.org" <linux-nfs@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] Please pull NFS client updates for Linux 6.9
Date: Sat, 16 Mar 2024 18:17:31 +0000	[thread overview]
Message-ID: <4623cb545316bfdb45b8d294861ad7eb508ec1b8.camel@hammerspace.com> (raw)

Hi Linus,

The following changes since commit d206a76d7d2726f3b096037f2079ce0bd3ba329b:

  Linux 6.8-rc6 (2024-02-25 15:46:06 -0800)

are available in the Git repository at:

  git://git.linux-nfs.org/projects/trondmy/linux-nfs.git tags/nfs-for-6.9-1

for you to fetch changes up to 719fcafe07c12646691bd62d7f8d94d657fa0766:

  nfs: fix panic when nfs4_ff_layout_prepare_ds() fails (2024-03-16 12:41:45 -0400)

----------------------------------------------------------------
NFS client updates for Linux 6.9

Highlights include:

Bugfixes:
 - Fix for an Oops in the NFSv4.2 listxattr handler
 - Correct an incorrect buffer size in listxattr
 - Fix for an Oops in the pNFS flexfiles layout
 - Fix a refcount leak in NFS O_DIRECT writes
 - Fix missing locking in NFS O_DIRECT
 - Avoid an infinite loop in pnfs_update_layout
 - Fix an overflow in the RPC waitqueue queue length counter
 - Ensure that pNFS I/O is also protected by TLS when xprtsec
   is specified by the mount options
 - Fix a leaked folio lock in the netfs read code
 - Fix a potential deadlock in fscache
 - Allow setting the fscache uniquifier in NFSv4
 - Fix an off by one in root_nfs_cat()
 - Fix another off by one in rpc_sockaddr2uaddr()
 - nfs4_do_open() can incorrectly trigger state recovery.
 - Various fixes for connection shutdown

Features and cleanups:
 - Ensure that containers only see their own RPC and NFS stats
 - Enable nconnect for RDMA
 - Remove dead code from nfs_writepage_locked()
 - Various tracepoint additions to track EXCHANGE_ID, GETDEVICEINFO, and
   mount options.

----------------------------------------------------------------
Benjamin Coddington (1):
      NFS: Read unlock folio on nfs_page_create_from_folio() error

Chen Hanxiao (3):
      NFS: Display the "fsc=" mount option if it is set
      nfs: fix regression in handling of fsc= option in NFSv4
      NFS: trace the uniquifier of fscache

Christophe JAILLET (2):
      net: sunrpc: Fix an off by one in rpc_sockaddr2uaddr()
      NFS: Fix an off by one in root_nfs_cat()

Dai Ngo (1):
      SUNRPC: increase size of rpc_wait_queue.qlen from unsigned short to unsigned int

Dave Wysochanski (1):
      NFS: Fix nfs_netfs_issue_read() xarray locking for writeback interrupt

Jeff Layton (1):
      nfs: remove unused NFS_CALL macro

Jorge Mora (2):
      NFSv4.2: fix nfs4_listxattr kernel BUG at mm/usercopy.c:102
      NFSv4.2: fix listxattr maximum XDR buffer size

Josef Bacik (6):
      sunrpc: add a struct rpc_stats arg to rpc_create_args
      nfs: expose /proc/net/sunrpc/nfs in net namespaces
      nfs: make the rpc_stat per net namespace
      nfs: properly protect nfs_direct_req fields
      nfs: fix UAF in direct writes
      nfs: fix panic when nfs4_ff_layout_prepare_ds() fails

NeilBrown (2):
      NFS: remove sync_mode test from nfs_writepage_locked()
      NFS: avoid infinite loop in pnfs_update_layout.

Olga Kornievskaia (4):
      SUNRPC: add xrpt id to rpc_stats_latency tracepoint
      pnfs/filelayout: add tracepoint to getdeviceinfo
      NFSv4.1: add tracepoint to trunked nfs4_exchange_id calls
      NFSv4.1/pnfs: fix NFS with TLS in pnfs

Trond Myklebust (6):
      SUNRPC: Don't retry using the same source port if connection failed
      SUNRPC: Don't try to send when the connection is shutting down
      SUNRPC: Add a transport callback to handle dequeuing of an RPC request
      NFSv4: nfs4_do_open() is incorrectly triggering state recovery
      NFS: enable nconnect for RDMA
      NFS: remove unused variable nfs_rpcstat

 fs/nfs/client.c                        |  9 +++---
 fs/nfs/delegation.c                    |  4 ---
 fs/nfs/direct.c                        | 18 +++++++++--
 fs/nfs/filelayout/filelayoutdev.c      |  2 ++
 fs/nfs/flexfilelayout/flexfilelayout.c |  2 +-
 fs/nfs/fs_context.c                    |  1 +
 fs/nfs/fscache.c                       |  9 ++----
 fs/nfs/inode.c                         |  8 ++---
 fs/nfs/internal.h                      |  2 --
 fs/nfs/netns.h                         |  2 ++
 fs/nfs/nfs3client.c                    |  1 +
 fs/nfs/nfs42.h                         |  7 ++--
 fs/nfs/nfs4_fs.h                       |  1 -
 fs/nfs/nfs4client.c                    |  2 ++
 fs/nfs/nfs4proc.c                      | 29 +++++++++--------
 fs/nfs/nfs4state.c                     | 12 ++++---
 fs/nfs/nfs4super.c                     | 24 ++++++++++++++
 fs/nfs/nfs4trace.c                     |  2 ++
 fs/nfs/nfs4trace.h                     | 58 ++++++++++++++++++++++++++++++++++
 fs/nfs/nfsroot.c                       |  4 +--
 fs/nfs/pnfs.c                          |  8 +++++
 fs/nfs/pnfs_nfs.c                      | 44 +++++++++++++++++++++++++-
 fs/nfs/read.c                          |  2 ++
 fs/nfs/super.c                         | 10 +++++-
 fs/nfs/write.c                         |  6 +---
 include/linux/nfs_fs.h                 |  1 +
 include/linux/nfs_xdr.h                |  7 ----
 include/linux/sunrpc/clnt.h            |  1 +
 include/linux/sunrpc/sched.h           |  2 +-
 include/linux/sunrpc/xprt.h            |  1 +
 include/trace/events/sunrpc.h          |  8 +++--
 include/trace/misc/nfs.h               |  1 +
 net/sunrpc/addr.c                      |  4 +--
 net/sunrpc/clnt.c                      |  5 ++-
 net/sunrpc/xprt.c                      |  9 ++++++
 net/sunrpc/xprtsock.c                  | 23 +++++++++++++-
 36 files changed, 258 insertions(+), 71 deletions(-)

-- 
Trond Myklebust
Linux NFS client maintainer, Hammerspace
trond.myklebust@hammerspace.com



             reply	other threads:[~2024-03-16 18:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-16 18:17 Trond Myklebust [this message]
2024-03-16 18:50 ` [GIT PULL] Please pull NFS client updates for Linux 6.9 pr-tracker-bot

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=4623cb545316bfdb45b8d294861ad7eb508ec1b8.camel@hammerspace.com \
    --to=trondmy@hammerspace.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.