mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Trond Myklebust <trondmy@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] Please pull NFS client updates for Linux 7.1
Date: Fri, 24 Apr 2026 16:48:45 -0400	[thread overview]
Message-ID: <b54851930d1daf66fabe718d0a02df850047ecd8.camel@kernel.org> (raw)

Hi Linus,

The following changes since commit 028ef9c96e96197026887c0f092424679298aae8:

  Linux 7.0 (2026-04-12 13:48:06 -0700)

are available in the Git repository at:

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

for you to fetch changes up to e6614b88d59d110ee1a80ed0826e34f24dd35c96:

  NFS: Fix RCU dereference of cl_xprt in nfs_compare_super_address (2026-04-22 08:53:23 -0400)

----------------------------------------------------------------
NFS client updates for Linux 7.1

Highlights include:

Bugfixes:
- NFS: Fix handling of ENOSPC so that if we have to resend writes, they
  are written synchronously.
- SUNRPC: RDMA transport fixes from Chuck
- NFSv4.2: Several fixes for delegated timestamps
- NFSv4: Failure to obtain a directory delegation should not cause
  stat() to fail.
- NFSv4: Rename was failing to update timestamps when a directory
  delegation is held.
- NFSv4: Ensure we check rsize/wsize after crossing a NFSv4 filesystem
  boundary.
- NFSv4/pnfs: If the server is down, retry the layout returns on reboot
- NFSv4/pnfs: Fallback to MDS could result in a short write being
  incorrectly logged.

Cleanups:
- NFS: use memcpy_and_pad in decode_fh

----------------------------------------------------------------
Christoph Hellwig (1):
      NFS/blocklayout: print each device used for SCSI layouts

Chuck Lever (7):
      xprtrdma: Close sendctx get/put race that can block a transport
      xprtrdma: Avoid 250 ms delay on backlog wakeup
      xprtrdma: Close lost-wakeup race in xprt_rdma_alloc_slot
      xprtrdma: Decouple frwr_wp_create from frwr_map
      xprtrdma: Replace rpcrdma_mr_seg with xdr_buf cursor
      xprtrdma: Scale receive batch size with credit window
      xprtrdma: Post receive buffers after RPC completion

Jeff Layton (2):
      nfs: fix utimensat() for atime with delegated timestamps
      nfs: update inode ctime after removexattr operation

Jenny Guanni Qu (1):
      pnfs/flexfiles: validate ds_versions_cnt is non-zero

Olga Kornievskaia (5):
      NFS: improve "Server wrote zero bytes" error
      NFS: fix RENAME attr in presence of directory delegations
      NFSv4: retry GETATTR if GET_DIR_DELEGATION failed
      NFS: fix writeback in presence of errors
      NFSv4.2: fix CLONE/COPY attrs in presence of delegated attributes

Sean Chang (2):
      NFS: remove redundant __private attribute from nfs_page_class
      NFS: Fix RCU dereference of cl_xprt in nfs_compare_super_address

Thorsten Blum (1):
      nfs: use memcpy_and_pad in decode_fh

Trond Myklebust (1):
      NFSv4/pnfs: If the server is down, retry the layout returns on reboot

Tushar Sariya (1):
      NFSv4.1: Apply session size limits on clone path

 fs/nfs/blocklayout/dev.c                  |   7 +-
 fs/nfs/callback_xdr.c                     |   3 +-
 fs/nfs/flexfilelayout/flexfilelayoutdev.c |   5 +
 fs/nfs/inode.c                            |  12 +-
 fs/nfs/internal.h                         |   2 +
 fs/nfs/localio.c                          |  15 ++-
 fs/nfs/nfs42proc.c                        |  19 +++-
 fs/nfs/nfs42xdr.c                         |  10 +-
 fs/nfs/nfs4client.c                       |   4 +-
 fs/nfs/nfs4proc.c                         |  42 +++++--
 fs/nfs/nfstrace.h                         |   2 +-
 fs/nfs/pagelist.c                         |   3 +
 fs/nfs/pnfs.c                             |  22 +++-
 fs/nfs/super.c                            |  16 ++-
 fs/nfs/write.c                            |  11 +-
 include/linux/nfs_fs.h                    |   1 +
 include/linux/nfs_xdr.h                   |   3 +
 include/linux/sunrpc/xprt.h               |   2 +
 include/trace/events/rpcrdma.h            |  28 ++---
 net/sunrpc/xprt.c                         |  16 +++
 net/sunrpc/xprtrdma/frwr_ops.c            | 179 ++++++++++++++++++++++++------
 net/sunrpc/xprtrdma/rpc_rdma.c            | 177 +++++++++++------------------
 net/sunrpc/xprtrdma/transport.c           |  17 ++-
 net/sunrpc/xprtrdma/verbs.c               |  19 +++-
 net/sunrpc/xprtrdma/xprt_rdma.h           |  43 ++++---
 25 files changed, 443 insertions(+), 215 deletions(-)

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

             reply	other threads:[~2026-04-24 20:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-24 20:48 Trond Myklebust [this message]
2026-04-24 21:54 ` 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=b54851930d1daf66fabe718d0a02df850047ecd8.camel@kernel.org \
    --to=trondmy@kernel.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®