public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/32] The following patches have been committed to branch nfs-for-2.6.32
@ 2009-08-19 23:38 Trond Myklebust
  2009-08-19 23:38 ` [PATCH 01/32] nfs: Keep index within mnt_errtbl[] Trond Myklebust
  0 siblings, 1 reply; 48+ messages in thread
From: Trond Myklebust @ 2009-08-19 23:38 UTC (permalink / raw)
  To: linux-nfs

Bartlomiej Zolnierkiewicz (1):
      nfs: remove superfluous BUG_ON()s

Peter Staubach (1):
      NFS: read-modify-write page updating

Roel Kluin (1):
      nfs: Keep index within mnt_errtbl[]

Trond Myklebust (29):
      NFSv4: Don't loop forever on state recovery failure...
      NFSv4: Add 'server capability' flags for NFSv4 recommended attributes
      NFSv4: Don't do idmapper upcalls for asynchronous RPC calls
      SUNRPC: convert some sysctls into module parameters
      NFSv4: Clean up the nfs.callback_tcpport option
      SUNRPC: Constify rpc_pipe_ops...
      SUNRPC: Allow rpc_pipefs_ops to have null values for upcall and downcall
      SUNRPC: Clean up rpc_pipefs lookup code...
      SUNRPC: Clean up file creation code in rpc_pipefs
      SUNRPC: Clean up rpc_unlink()
      SUNRPC: Clean up rpc_lookup_create
      SUNRPC: Clean up rpc_populate/depopulate
      SUNRPC: rpc_pipefs cleanup
      SUNRPC: Rename rpc_mkdir to rpc_create_client_dir()
      SUNRPC: Clean up rpc_create_client_dir()
      SUNRPC: Replace rpc_client->cl_dentry and cl_mnt, with a cl_path
      SUNRPC: clean up rpc_setup_pipedir()
      SUNRPC: One more clean up for rpc_create_client_dir()
      NFSD: Clean up the idmapper warning...
      SUNRPC: Ensure we initialise the cache_detail before creating procfs files
      SUNRPC: Remove the global temporary write buffer in net/sunrpc/cache.c
      SUNRPC: Allow the cache_detail to specify alternative upcall mechanisms
      SUNRPC: Move procfs-specific stuff out of the generic sunrpc cache code
      SUNRPC: Add an rpc_pipefs front end for the sunrpc cache code
      NFS: Add a ->migratepage() aop for NFS
      SUNRPC: Fix a typo in cache_pipefs_files
      NFS: Add a dns resolver for use with NFSv4 referrals and migration
      NFS: Use the DNS resolver in the mount code.
      SUNRPC: cache must take a reference to the cache detail's module on open()

 Documentation/filesystems/nfs.txt   |   98 +++++
 Documentation/kernel-parameters.txt |   29 ++
 fs/nfs/Makefile                     |    3 +-
 fs/nfs/cache_lib.c                  |  140 +++++++
 fs/nfs/cache_lib.h                  |   27 ++
 fs/nfs/callback.c                   |   26 +-
 fs/nfs/client.c                     |   15 +-
 fs/nfs/dns_resolve.c                |  335 +++++++++++++++++
 fs/nfs/dns_resolve.h                |   14 +
 fs/nfs/file.c                       |   49 +++-
 fs/nfs/idmap.c                      |    6 +-
 fs/nfs/inode.c                      |  100 +++++-
 fs/nfs/internal.h                   |    6 +
 fs/nfs/mount_clnt.c                 |    4 +-
 fs/nfs/nfs4namespace.c              |   18 +-
 fs/nfs/nfs4proc.c                   |   40 ++-
 fs/nfs/nfs4xdr.c                    |   86 +++--
 fs/nfs/write.c                      |   91 ++++--
 fs/nfsd/export.c                    |   14 +-
 fs/nfsd/nfs4idmap.c                 |   20 +-
 include/linux/nfs_fs_sb.h           |    9 +
 include/linux/sunrpc/cache.h        |   40 ++-
 include/linux/sunrpc/clnt.h         |    5 +-
 include/linux/sunrpc/rpc_pipe_fs.h  |   18 +-
 net/sunrpc/auth_gss/auth_gss.c      |   12 +-
 net/sunrpc/auth_gss/svcauth_gss.c   |    7 +-
 net/sunrpc/cache.c                  |  622 ++++++++++++++++++++++++--------
 net/sunrpc/clnt.c                   |   60 ++-
 net/sunrpc/rpc_pipe.c               |  685 ++++++++++++++++++++---------------
 net/sunrpc/svcauth_unix.c           |   14 +-
 net/sunrpc/xprtsock.c               |   52 +++
 31 files changed, 2065 insertions(+), 580 deletions(-)


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

end of thread, other threads:[~2009-08-21 20:57 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-19 23:38 [PATCH 00/32] The following patches have been committed to branch nfs-for-2.6.32 Trond Myklebust
2009-08-19 23:38 ` [PATCH 01/32] nfs: Keep index within mnt_errtbl[] Trond Myklebust
2009-08-19 23:38   ` [PATCH 02/32] NFSv4: Don't loop forever on state recovery failure Trond Myklebust
2009-08-19 23:38     ` [PATCH 03/32] NFSv4: Add 'server capability' flags for NFSv4 recommended attributes Trond Myklebust
2009-08-19 23:38       ` [PATCH 04/32] NFSv4: Don't do idmapper upcalls for asynchronous RPC calls Trond Myklebust
2009-08-19 23:38         ` [PATCH 05/32] SUNRPC: convert some sysctls into module parameters Trond Myklebust
2009-08-19 23:38           ` [PATCH 06/32] NFSv4: Clean up the nfs.callback_tcpport option Trond Myklebust
2009-08-19 23:38             ` [PATCH 07/32] SUNRPC: Constify rpc_pipe_ops Trond Myklebust
2009-08-19 23:38               ` [PATCH 08/32] SUNRPC: Allow rpc_pipefs_ops to have null values for upcall and downcall Trond Myklebust
2009-08-19 23:38                 ` [PATCH 09/32] SUNRPC: Clean up rpc_pipefs lookup code Trond Myklebust
2009-08-19 23:38                   ` [PATCH 10/32] SUNRPC: Clean up file creation code in rpc_pipefs Trond Myklebust
2009-08-19 23:38                     ` [PATCH 11/32] SUNRPC: Clean up rpc_unlink() Trond Myklebust
2009-08-19 23:38                       ` [PATCH 12/32] SUNRPC: Clean up rpc_lookup_create Trond Myklebust
2009-08-19 23:38                         ` [PATCH 13/32] SUNRPC: Clean up rpc_populate/depopulate Trond Myklebust
2009-08-19 23:38                           ` [PATCH 14/32] SUNRPC: rpc_pipefs cleanup Trond Myklebust
2009-08-19 23:38                             ` [PATCH 15/32] SUNRPC: Rename rpc_mkdir to rpc_create_client_dir() Trond Myklebust
2009-08-19 23:38                               ` [PATCH 16/32] SUNRPC: Clean up rpc_create_client_dir() Trond Myklebust
2009-08-19 23:38                                 ` [PATCH 17/32] SUNRPC: Replace rpc_client->cl_dentry and cl_mnt, with a cl_path Trond Myklebust
2009-08-19 23:38                                   ` [PATCH 18/32] SUNRPC: clean up rpc_setup_pipedir() Trond Myklebust
2009-08-19 23:38                                     ` [PATCH 19/32] SUNRPC: One more clean up for rpc_create_client_dir() Trond Myklebust
2009-08-19 23:38                                       ` [PATCH 20/32] NFSD: Clean up the idmapper warning Trond Myklebust
2009-08-19 23:38                                         ` [PATCH 21/32] SUNRPC: Ensure we initialise the cache_detail before creating procfs files Trond Myklebust
2009-08-19 23:38                                           ` [PATCH 22/32] SUNRPC: Remove the global temporary write buffer in net/sunrpc/cache.c Trond Myklebust
2009-08-19 23:38                                             ` [PATCH 23/32] SUNRPC: Allow the cache_detail to specify alternative upcall mechanisms Trond Myklebust
2009-08-19 23:38                                               ` [PATCH 24/32] SUNRPC: Move procfs-specific stuff out of the generic sunrpc cache code Trond Myklebust
2009-08-19 23:38                                                 ` [PATCH 25/32] SUNRPC: Add an rpc_pipefs front end for the " Trond Myklebust
2009-08-19 23:38                                                   ` [PATCH 26/32] NFS: Add a ->migratepage() aop for NFS Trond Myklebust
2009-08-19 23:38                                                     ` [PATCH 27/32] NFS: read-modify-write page updating Trond Myklebust
2009-08-19 23:38                                                       ` [PATCH 28/32] nfs: remove superfluous BUG_ON()s Trond Myklebust
2009-08-19 23:38                                                         ` [PATCH 29/32] SUNRPC: Fix a typo in cache_pipefs_files Trond Myklebust
     [not found]                                                           ` <1250725135-14632-31-git-send-email-Trond.Myklebus! t@! ne! tapp.com>
     [not found]                                                           ` <1250725135-14632-31-git-send-email-Trond.Myklebust@! ne! tapp.com>
2009-08-19 23:38                                                           ` [PATCH 30/32] NFS: Add a dns resolver for use with NFSv4 referrals and migration Trond Myklebust
2009-08-19 23:38                                                             ` [PATCH 31/32] NFS: Use the DNS resolver in the mount code Trond Myklebust
2009-08-19 23:38                                                               ` [PATCH 32/32] SUNRPC: cache must take a reference to the cache detail's module on open() Trond Myklebust
2009-08-19 23:51                                                             ` [PATCH 30/32] NFS: Add a dns resolver for use with NFSv4 referrals and migration Trond Myklebust
     [not found]                                                               ` <1250725916.12555.1.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-08-21 20:47                                                                 ` J. Bruce Fields
2009-08-21 20:57                                                                   ` Chuck Lever
2009-08-20 15:34                                                             ` Chuck Lever
2009-08-20 16:25                                                               ` Trond Myklebust
     [not found]                                                                 ` <1250785542.19156.12.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-08-20 16:54                                                                   ` Chuck Lever
2009-08-20 19:11                                                                     ` Trond Myklebust
     [not found]                                                                       ` <1250795483.26904.6.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-08-20 21:13                                                                         ` Chuck Lever
2009-08-20 21:03                                                             ` J. Bruce Fields
2009-08-20 21:08                                                               ` [PATCH] nfs: fix compile error in rpc_pipefs.h J. Bruce Fields
2009-08-20 22:23                                                               ` [PATCH 30/32] NFS: Add a dns resolver for use with NFSv4 referrals and migration Trond Myklebust
     [not found]                                                                 ` <1250807011.6514.8.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-08-20 22:33                                                                   ` J. Bruce Fields
2009-08-20 22:39                                                                     ` Trond Myklebust
2009-08-21 13:42                                                             ` Jeff Layton
     [not found]                                                               ` <20090821094248.23bc54f1-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
2009-08-21 14:21                                                                 ` Trond Myklebust

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox