All of lore.kernel.org
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-fsdevel@vger.kernel.org
Subject: nfsd changes for 3.13
Date: Fri, 15 Nov 2013 11:18:43 -0500	[thread overview]
Message-ID: <20131115161843.GD3371@fieldses.org> (raw)

Please pull nfsd changes for 3.13 from

  git://linux-nfs.org/~bfields/linux.git nfsd-next

This includes miscellaneous bugfixes and cleanup and a performance fix
for write-heavy NFSv4 workloads.

(The most significant nfsd-relevant change this time is actually in the
delegation patches that went through Viro, fixing a long-standing bug
that can cause NFSv4 clients to miss updates made by non-nfs users of
the filesystem.  Those enable some followup nfsd patches which I have
queued locally, but those can wait till 3.14.)

--b.

----------------------------------------------------------------
Al Viro (1):
      nfsd: switch to %p[dD]

Anna Schumaker (2):
      NFSD: Combine decode operations for v4 and v4.1
      NFSD: Add support for NFS v4.2 operation checking

Benny Halevy (5):
      nfsd: nfs4_free_stid
      nfsd: nfs4_open_delegation needs to remove_stid rather than unhash_stid
      nfsd: remove_stid can be incorporated into nfs4_put_delegation
      nfsd: no need to unhash_stid before free
      nfsd4: need to destroy revoked delegations in destroy_client

Christoph Hellwig (2):
      nfsd: fix Kconfig syntax
      nfsd: export proper maximum file size to the client

J. Bruce Fields (12):
      svcrpc: fix gss-proxy NULL dereference in some error cases
      svcrpc: fix error-handling on badd gssproxy downcall
      svcrpc: handle some gssproxy encoding errors
      gss_krb5: document that we ignore sequence number
      nfsd: fh_update should error out in unexpected cases
      nfsd: return better errors to exportfs
      nfsd: -EINVAL on invalid anonuid/gid instead of silent failure
      nfsd4: nfsd_shutdown_net needs state lock
      nfsd4: fix discarded security labels on setattr
      Revert "nfsd: remove_stid can be incorporated into nfs4_put_delegation"
      sunrpc: comment typo fix
      nfsd4: improve write performance with better sendspace reservations

Jeff Layton (1):
      sunrpc: trim off EC bytes in GSSAPI v2 unwrap

Weng Meiling (1):
      svcrpc: remove an unnecessary assignment

 fs/nfsd/Kconfig                       |    2 +-
 fs/nfsd/export.c                      |   24 +++++-
 fs/nfsd/nfs4recover.c                 |   12 +--
 fs/nfsd/nfs4state.c                   |   41 +++++-----
 fs/nfsd/nfs4xdr.c                     |  132 ++++++++++++++++++---------------
 fs/nfsd/nfsfh.c                       |   36 ++++-----
 fs/nfsd/nfsfh.h                       |    4 +-
 fs/nfsd/vfs.c                         |    9 +--
 include/linux/nfs4.h                  |    3 +
 net/sunrpc/auth_gss/gss_krb5_unseal.c |    8 +-
 net/sunrpc/auth_gss/gss_krb5_wrap.c   |   10 ++-
 net/sunrpc/auth_gss/gss_rpc_upcall.c  |    3 +-
 net/sunrpc/auth_gss/gss_rpc_xdr.c     |   29 ++++----
 net/sunrpc/auth_gss/svcauth_gss.c     |    4 +-
 net/sunrpc/svc.c                      |    2 -
 net/sunrpc/xprtsock.c                 |    4 +-
 16 files changed, 179 insertions(+), 144 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: "J. Bruce Fields" <bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org>
To: Linus Torvalds
	<torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: nfsd changes for 3.13
Date: Fri, 15 Nov 2013 11:18:43 -0500	[thread overview]
Message-ID: <20131115161843.GD3371@fieldses.org> (raw)

Please pull nfsd changes for 3.13 from

  git://linux-nfs.org/~bfields/linux.git nfsd-next

This includes miscellaneous bugfixes and cleanup and a performance fix
for write-heavy NFSv4 workloads.

(The most significant nfsd-relevant change this time is actually in the
delegation patches that went through Viro, fixing a long-standing bug
that can cause NFSv4 clients to miss updates made by non-nfs users of
the filesystem.  Those enable some followup nfsd patches which I have
queued locally, but those can wait till 3.14.)

--b.

----------------------------------------------------------------
Al Viro (1):
      nfsd: switch to %p[dD]

Anna Schumaker (2):
      NFSD: Combine decode operations for v4 and v4.1
      NFSD: Add support for NFS v4.2 operation checking

Benny Halevy (5):
      nfsd: nfs4_free_stid
      nfsd: nfs4_open_delegation needs to remove_stid rather than unhash_stid
      nfsd: remove_stid can be incorporated into nfs4_put_delegation
      nfsd: no need to unhash_stid before free
      nfsd4: need to destroy revoked delegations in destroy_client

Christoph Hellwig (2):
      nfsd: fix Kconfig syntax
      nfsd: export proper maximum file size to the client

J. Bruce Fields (12):
      svcrpc: fix gss-proxy NULL dereference in some error cases
      svcrpc: fix error-handling on badd gssproxy downcall
      svcrpc: handle some gssproxy encoding errors
      gss_krb5: document that we ignore sequence number
      nfsd: fh_update should error out in unexpected cases
      nfsd: return better errors to exportfs
      nfsd: -EINVAL on invalid anonuid/gid instead of silent failure
      nfsd4: nfsd_shutdown_net needs state lock
      nfsd4: fix discarded security labels on setattr
      Revert "nfsd: remove_stid can be incorporated into nfs4_put_delegation"
      sunrpc: comment typo fix
      nfsd4: improve write performance with better sendspace reservations

Jeff Layton (1):
      sunrpc: trim off EC bytes in GSSAPI v2 unwrap

Weng Meiling (1):
      svcrpc: remove an unnecessary assignment

 fs/nfsd/Kconfig                       |    2 +-
 fs/nfsd/export.c                      |   24 +++++-
 fs/nfsd/nfs4recover.c                 |   12 +--
 fs/nfsd/nfs4state.c                   |   41 +++++-----
 fs/nfsd/nfs4xdr.c                     |  132 ++++++++++++++++++---------------
 fs/nfsd/nfsfh.c                       |   36 ++++-----
 fs/nfsd/nfsfh.h                       |    4 +-
 fs/nfsd/vfs.c                         |    9 +--
 include/linux/nfs4.h                  |    3 +
 net/sunrpc/auth_gss/gss_krb5_unseal.c |    8 +-
 net/sunrpc/auth_gss/gss_krb5_wrap.c   |   10 ++-
 net/sunrpc/auth_gss/gss_rpc_upcall.c  |    3 +-
 net/sunrpc/auth_gss/gss_rpc_xdr.c     |   29 ++++----
 net/sunrpc/auth_gss/svcauth_gss.c     |    4 +-
 net/sunrpc/svc.c                      |    2 -
 net/sunrpc/xprtsock.c                 |    4 +-
 16 files changed, 179 insertions(+), 144 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2013-11-15 16:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-15 16:18 J. Bruce Fields [this message]
2013-11-15 16:18 ` nfsd changes for 3.13 J. Bruce Fields

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=20131115161843.GD3371@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=linux-fsdevel@vger.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 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.