linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Please pull NFS client bugfixes for Linux 4.8
@ 2016-08-30 16:57 Trond Myklebust
  0 siblings, 0 replies; 2+ messages in thread
From: Trond Myklebust @ 2016-08-30 16:57 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-nfs

Hi Linus,

The following changes since commit 694d0d0bb2030d2e36df73e2d23d5770511dbc8d:

  Linux 4.8-rc2 (2016-08-14 19:11:36 -0700)

are available in the git repository at:

  git://git.linux-nfs.org/projects/trondmy/linux-nfs.git tags/nfs-for-4.8-3

for you to fetch changes up to 98b0f80c2396224bbbed81792b526e6c72ba9efa:

  NFSv4.x: Fix a refcount leak in nfs_callback_up_net (2016-08-30 09:26:57 -0400)

Cheers,
  Trond

----------------------------------------------------------------
NFS client bugfixes for 4.8

Highlights include:

Stable patches:
- Fix a refcount leak in nfs_callback_up_net
- Fix an Oopsable condition when the flexfile pNFS driver connection to
  the DS fails
- Fix an Oopsable condition in NFSv4.1 server callback races
- Ensure pNFS clients stop doing I/O to the DS if their lease has expired,
  as required by the NFSv4.1 protocol

Bugfixes:
- Fix potential looping in the NFSv4.x migration code
- Patch series to close callback races for OPEN, LAYOUTGET and LAYOUTRETURN
- Silence WARN_ON when NFSv4.1 over RDMA is in use
- Fix a LAYOUTCOMMIT race in the pNFS/blocks client
- Fix pNFS timeout issues when the DS fails

----------------------------------------------------------------
Benjamin Coddington (2):
      pnfs/blocklayout: update last_write_offset atomically with extents
      NFS4: Avoid migration loops

Chuck Lever (1):
      SUNRPC: Silence WARN_ON when NFSv4.1 over RDMA is in use

Trond Myklebust (12):
      pNFS/flexfiles: Fix layoutstat periodic reporting
      NFS: Allow the mount option retrans=0
      pNFS/flexfiles: Set reasonable default retrans values for the data channel
      pNFS: Handle NFS4ERR_OLD_STATEID correctly in LAYOUTSTAT calls
      pNFS: The client must not do I/O to the DS if it's lease has expired
      NFSv4.1: Fix Oopsable condition in server callback races
      NFSv4.1: Delay callback processing when there are referring triples
      NFSv4.1: Defer bumping the slot sequence number until we free the slot
      NFSv4.1: Close callback races for OPEN, LAYOUTGET and LAYOUTRETURN
      NFSv4.1: Remove obsolete and incorrrect assignment in nfs4_callback_sequence
      pNFS/flexfiles: Fix an Oopsable condition when connection to the DS fails
      NFSv4.x: Fix a refcount leak in nfs_callback_up_net

 fs/nfs/blocklayout/blocklayout.c          |  2 +-
 fs/nfs/blocklayout/blocklayout.h          |  3 +-
 fs/nfs/blocklayout/extent_tree.c          | 10 ++--
 fs/nfs/callback.c                         |  1 +
 fs/nfs/callback_proc.c                    |  8 +--
 fs/nfs/client.c                           | 10 ++--
 fs/nfs/flexfilelayout/flexfilelayout.c    | 45 ++++++++--------
 fs/nfs/flexfilelayout/flexfilelayout.h    |  2 +-
 fs/nfs/flexfilelayout/flexfilelayoutdev.c | 23 ++++----
 fs/nfs/internal.h                         |  5 +-
 fs/nfs/nfs42proc.c                        | 34 ++++++++++--
 fs/nfs/nfs4client.c                       |  5 ++
 fs/nfs/nfs4proc.c                         | 89 +++++++++++++++++++++++++------
 fs/nfs/nfs4session.c                      | 53 ++++++++++++++++++
 fs/nfs/nfs4session.h                      |  7 ++-
 fs/nfs/pnfs.c                             |  2 +-
 fs/nfs/super.c                            | 19 ++++++-
 net/sunrpc/clnt.c                         |  4 +-
 18 files changed, 244 insertions(+), 78 deletions(-)
-- 
Trond Myklebust
Linux NFS client maintainer, PrimaryData
trond.myklebust@primarydata.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [GIT PULL] Please pull NFS client bugfixes for Linux 4.8
@ 2016-08-12 19:05 Trond Myklebust
  0 siblings, 0 replies; 2+ messages in thread
From: Trond Myklebust @ 2016-08-12 19:05 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-nfs

Hi Linus,

The following changes since commit 944171cbf499d3445c749f7c13c46de0a564a905:

  pNFS: Actively set attributes as invalid if LAYOUTCOMMIT is outstanding (2016-07-28 14:49:08 -0400)

are available in the git repository at:

  git://git.linux-nfs.org/projects/trondmy/linux-nfs.git tags/nfs-for-4.8-2

for you to fetch changes up to 8d480326c3d6921ff5f1cc988c993bd572248deb:

  NFSv4: Cap the transport reconnection timer at 1/2 lease period (2016-08-05 19:22:22 -0400)

----------------------------------------------------------------
NFS client bugfixes for Linux 4.8

Highlights include:

- Stable patch from Olga to fix RPCSEC_GSS upcalls when the same user needs
  multiple different security services (e.g. krb5i and krb5p).
- Stable patch to fix a regression introduced by the use of SO_REUSEPORT,
  and that prevented the use of multiple different NFS versions to the
  same server.
- TCP socket reconnection timer fixes.
- Patch from Neil to disable the use of IPv6 temporary addresses.

Cheers
  Trond

----------------------------------------------------------------
NeilBrown (1):
      SUNRPC: disable the use of IPv6 temporary addresses.

Olga Kornievskaia (1):
      SUNRPC: allow for upcalls for same uid but different gss service

Trond Myklebust (7):
      SUNRPC: Handle EADDRNOTAVAIL on connection failures
      SUNRPC: Fix up socket autodisconnect
      NFSv4.2: LAYOUTSTATS may return NFS4ERR_ADMIN/DELEG_REVOKED
      SUNRPC: Fix reconnection timeouts
      SUNRPC: Limit the reconnect backoff timer to the max RPC message timeout
      NFSv4: Cleanup the setting of the nfs4 lease period
      NFSv4: Cap the transport reconnection timer at 1/2 lease period

 fs/nfs/nfs42proc.c             |  2 ++
 fs/nfs/nfs4_fs.h               |  4 +++
 fs/nfs/nfs4proc.c              |  9 +++----
 fs/nfs/nfs4renewd.c            | 20 ++++++++++++++
 fs/nfs/nfs4state.c             |  9 +++----
 include/linux/sunrpc/clnt.h    |  2 ++
 include/linux/sunrpc/xprt.h    |  3 ++-
 net/sunrpc/auth_gss/auth_gss.c |  8 +++---
 net/sunrpc/clnt.c              | 24 +++++++++++++++++
 net/sunrpc/xprt.c              | 26 ++++++++++++------
 net/sunrpc/xprtsock.c          | 60 +++++++++++++++++++++++++++++++++---------
 11 files changed, 130 insertions(+), 37 deletions(-)
-- 
Trond Myklebust
Linux NFS client maintainer, PrimaryData
trond.myklebust@primarydata.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-30 16:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-30 16:57 [GIT PULL] Please pull NFS client bugfixes for Linux 4.8 Trond Myklebust
  -- strict thread matches above, loose matches on Subject: below --
2016-08-12 19:05 Trond Myklebust

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).