linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Chuck Lever <chuck.lever@oracle.com>
To: trond.myklebust@netapp.com
Cc: linux-nfs@vger.kernel.org
Subject: [PATCH 00/15] For 3.4 (2nd take)
Date: Thu, 01 Mar 2012 17:00:14 -0500	[thread overview]
Message-ID: <20120301215755.2138.73488.stgit@degas.1015granger.net> (raw)

Hi-

Please consider these minor fixes and migration pre-requisites for
3.4.  I've ported them to nfs-for-next on top of commit abd96698.
I've tested all but the last one (see patch description).

---

Chuck Lever (13):
      NFS: Fix some minor problems with nfs4_deviceids
      NFS: Fix some minor problems with nfs4_verifiers
      NFS: Request fh_expire_type attribute in "server caps" operation
      NFS: Introduce NFS_ATTR_FATTR_V4_LOCATIONS
      NFS: Simplify arguments of encode_renew()
      NFS: Save root file handle in nfs_server
      NFS: Add a client-side function to display NFS file handles
      commit 6f38b4ba433ac6494f83cb73dd07dcbde797e1e0
      SUNRPC: Add API to acquire source address
      NFS: Reduce debugging noise from encode_compound_hdr
      NFS: Add debugging messages to NFSv4's CLOSE procedure
      NFS: Clean up debugging in decode_pathname()
      NFS: Make nfs_cache_array.size a signed integer

Trond Myklebust (2):
      SUNRPC: Move clnt->cl_server into struct rpc_xprt
      SUNRPC: Use RCU to dereference the rpc_clnt.cl_xprt field


 fs/nfs/blocklayout/blocklayout.c    |    2 
 fs/nfs/blocklayout/blocklayoutdev.c |    8 -
 fs/nfs/blocklayout/extents.c        |    5 -
 fs/nfs/callback.c                   |    3 
 fs/nfs/callback_proc.c              |    9 +
 fs/nfs/callback_xdr.c               |    2 
 fs/nfs/client.c                     |   32 +++
 fs/nfs/dir.c                        |    2 
 fs/nfs/getroot.c                    |    5 +
 fs/nfs/inode.c                      |   45 +++++
 fs/nfs/nfs4filelayout.c             |    3 
 fs/nfs/nfs4namespace.c              |    2 
 fs/nfs/nfs4proc.c                   |   40 +++-
 fs/nfs/nfs4state.c                  |   25 ++-
 fs/nfs/nfs4xdr.c                    |   84 ++++++--
 fs/nfs/objlayout/pnfs_osd_xdr_cli.c |    8 -
 fs/nfs/pnfs_dev.c                   |    7 -
 fs/nfs/super.c                      |   11 +
 fs/nfsd/nfs4proc.c                  |    4 
 fs/nfsd/nfs4state.c                 |    2 
 fs/nfsd/nfs4xdr.c                   |   28 +--
 include/linux/nfs4.h                |   12 +
 include/linux/nfs_fs.h              |   14 +
 include/linux/nfs_fs_sb.h           |    4 
 include/linux/nfs_xdr.h             |   12 +
 include/linux/pnfs_osd_xdr.h        |    4 
 include/linux/sunrpc/clnt.h         |    6 -
 include/linux/sunrpc/debug.h        |   13 +
 include/linux/sunrpc/xprt.h         |    2 
 net/sunrpc/auth_gss/auth_gss.c      |    4 
 net/sunrpc/clnt.c                   |  347 ++++++++++++++++++++++++++++-------
 net/sunrpc/rpc_pipe.c               |    6 +
 net/sunrpc/rpcb_clnt.c              |   19 +-
 net/sunrpc/stats.c                  |    6 +
 net/sunrpc/xprt.c                   |   15 +-
 35 files changed, 604 insertions(+), 187 deletions(-)

-- 
Signature

             reply	other threads:[~2012-03-01 22:00 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-01 22:00 Chuck Lever [this message]
2012-03-01 22:00 ` [PATCH 01/15] NFS: Make nfs_cache_array.size a signed integer Chuck Lever
2012-03-01 22:00 ` [PATCH 02/15] NFS: Clean up debugging in decode_pathname() Chuck Lever
2012-03-01 22:00 ` [PATCH 03/15] NFS: Add debugging messages to NFSv4's CLOSE procedure Chuck Lever
2012-03-01 22:00 ` [PATCH 04/15] NFS: Reduce debugging noise from encode_compound_hdr Chuck Lever
2012-03-01 22:15   ` Adamson, Dros
2012-03-01 22:19   ` Myklebust, Trond
2012-03-01 22:00 ` [PATCH 05/15] SUNRPC: Use RCU to dereference the rpc_clnt.cl_xprt field Chuck Lever
2012-03-01 22:01 ` [PATCH 06/15] SUNRPC: Move clnt->cl_server into struct rpc_xprt Chuck Lever
2012-03-01 22:01 ` [PATCH 07/15] SUNRPC: Add API to acquire source address Chuck Lever
2012-03-01 22:09   ` Jim Rees
2012-03-01 22:27     ` Chuck Lever
2012-03-01 22:01 ` [PATCH 08/15] commit 6f38b4ba433ac6494f83cb73dd07dcbde797e1e0 Chuck Lever
2012-03-01 22:01 ` [PATCH 09/15] NFS: Add a client-side function to display NFS file handles Chuck Lever
2012-03-01 22:28   ` Myklebust, Trond
2012-03-01 22:32     ` Chuck Lever
2012-03-02 17:17     ` Steve Dickson
2012-03-02 17:19       ` Chuck Lever
2012-03-02 18:50         ` Steve Dickson
2012-03-06 16:55           ` Adamson, Dros
2012-03-01 22:01 ` [PATCH 10/15] NFS: Save root file handle in nfs_server Chuck Lever
2012-03-01 22:30   ` Myklebust, Trond
2012-03-01 22:01 ` [PATCH 11/15] NFS: Simplify arguments of encode_renew() Chuck Lever
2012-03-01 22:01 ` [PATCH 12/15] NFS: Introduce NFS_ATTR_FATTR_V4_LOCATIONS Chuck Lever
2012-03-01 22:02 ` [PATCH 13/15] NFS: Request fh_expire_type attribute in "server caps" operation Chuck Lever
2012-03-01 22:02 ` [PATCH 14/15] NFS: Fix some minor problems with nfs4_verifiers Chuck Lever
2012-03-01 22:35   ` Myklebust, Trond
2012-03-01 22:43     ` Myklebust, Trond
2012-03-01 22:02 ` [PATCH 15/15] NFS: Fix some minor problems with nfs4_deviceids Chuck Lever
2012-03-01 22:39   ` Myklebust, Trond
2012-03-01 22:55     ` Chuck Lever
2012-03-02 18:10       ` Chuck Lever
2012-03-02 21:58         ` Boaz Harrosh
2012-03-02 22:00           ` Boaz Harrosh
2012-03-02 22:03           ` Chuck Lever
2012-03-02 22:06             ` Boaz Harrosh
2012-03-02 22:11               ` Chuck Lever
2012-03-02 22:52                 ` Boaz Harrosh

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=20120301215755.2138.73488.stgit@degas.1015granger.net \
    --to=chuck.lever@oracle.com \
    --cc=linux-nfs@vger.kernel.org \
    --cc=trond.myklebust@netapp.com \
    /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;
as well as URLs for NNTP newsgroup(s).