linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@osdl.org>
To: David Howells <dhowells@redhat.com>
Cc: aviro@redhat.com, linux-kernel@vger.kernel.org,
	nfsv4@linux-nfs.org, steved@redhat.com, torvalds@osdl.org,
	linux-cachefs@redhat.com, linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 0/5] Permit NFS superblock sharing [try #2]
Date: Wed, 1 Mar 2006 16:21:13 -0800	[thread overview]
Message-ID: <20060301162113.774d1745.akpm@osdl.org> (raw)
In-Reply-To: <20060301173617.16639.83553.stgit@warthog.cambridge.redhat.com>

David Howells <dhowells@redhat.com> wrote:
>
> These patches make it possible to share NFS superblocks between related mounts,
> where "related" means on the same server.

The number of rejects gets into the "I'm not confident it'll work after
this" territory.

Here's Trond's current diff:

 fs/lockd/clntlock.c            |  112 +---
 fs/lockd/clntproc.c            |  328 +++++---------
 fs/lockd/host.c                |   12 
 fs/lockd/mon.c                 |   11 
 fs/lockd/svc4proc.c            |  157 ++----
 fs/lockd/svclock.c             |  287 ++++++------
 fs/lockd/svcproc.c             |  151 ++----
 fs/lockd/svcsubs.c             |    2 
 fs/lockd/xdr.c                 |   17 
 fs/lockd/xdr4.c                |   21 
 fs/locks.c                     |  106 ++--
 fs/namespace.c                 |   38 +
 fs/nfs/callback_xdr.c          |   28 -
 fs/nfs/dir.c                   |  104 +++-
 fs/nfs/direct.c                |  949 +++++++++++++++++++++++------------------
 fs/nfs/file.c                  |   43 +
 fs/nfs/idmap.c                 |   47 +-
 fs/nfs/inode.c                 |  201 ++++++--
 fs/nfs/iostat.h                |  163 +++++++
 fs/nfs/mount_clnt.c            |   17 
 fs/nfs/nfs2xdr.c               |    4 
 fs/nfs/nfs3acl.c               |   16 
 fs/nfs/nfs3proc.c              |  246 +++++-----
 fs/nfs/nfs3xdr.c               |    6 
 fs/nfs/nfs4proc.c              |   96 +---
 fs/nfs/nfs4xdr.c               |    2 
 fs/nfs/pagelist.c              |   10 
 fs/nfs/proc.c                  |  156 ++++--
 fs/nfs/read.c                  |  102 +++-
 fs/nfs/unlink.c                |    3 
 fs/nfs/write.c                 |  152 +++++-
 fs/nfsd/nfs4callback.c         |    2 
 fs/nfsd/nfs4state.c            |   13 
 fs/proc/base.c                 |   39 +
 include/linux/fs.h             |    7 
 include/linux/lockd/lockd.h    |   25 -
 include/linux/lockd/xdr.h      |    1 
 include/linux/nfs_fs.h         |   88 ---
 include/linux/nfs_fs_i.h       |    8 
 include/linux/nfs_fs_sb.h      |    6 
 include/linux/nfs_xdr.h        |    5 
 include/linux/sunrpc/clnt.h    |   19 
 include/linux/sunrpc/metrics.h |   77 +++
 include/linux/sunrpc/sched.h   |    9 
 include/linux/sunrpc/xprt.h    |   13 
 net/sunrpc/auth.c              |   16 
 net/sunrpc/auth_gss/auth_gss.c |    2 
 net/sunrpc/clnt.c              |   18 
 net/sunrpc/pmap_clnt.c         |   41 +
 net/sunrpc/rpc_pipe.c          |    9 
 net/sunrpc/sched.c             |    7 
 net/sunrpc/stats.c             |  115 ++++
 net/sunrpc/xprt.c              |   26 -
 net/sunrpc/xprtsock.c          |   49 ++
 54 files changed, 2518 insertions(+), 1664 deletions(-)

Please work against that.

  parent reply	other threads:[~2006-03-02  0:21 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-03-01 17:36 [PATCH 0/5] Permit NFS superblock sharing [try #2] David Howells
2006-03-01 17:36 ` [PATCH 1/5] NFS: Permit filesystem to override root dentry on mount " David Howells
2006-03-01 17:36 ` [PATCH 2/5] NFS: Apply mount root dentry override to filesystems " David Howells
2006-03-01 17:36 ` [PATCH 3/5] NFS: Abstract out namespace initialisation " David Howells
2006-03-01 17:36 ` [PATCH 4/5] NFS: Add dentry materialisation op " David Howells
2006-03-01 17:36 ` [PATCH 5/5] NFS: Unify NFS superblocks per-protocol per-server " David Howells
2006-03-02  0:21 ` Andrew Morton [this message]
2006-03-02 11:04 ` [PATCH 0/5] Permit NFS superblock sharing " David Howells
2006-03-02 17:31   ` Andrew Morton
2006-03-02 11:45 ` David Howells
2006-03-02 17:28   ` Andrew Morton
2006-03-02 17:57   ` David Howells
2006-03-02 18:08     ` Andrew Morton

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=20060301162113.774d1745.akpm@osdl.org \
    --to=akpm@osdl.org \
    --cc=aviro@redhat.com \
    --cc=dhowells@redhat.com \
    --cc=linux-cachefs@redhat.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nfsv4@linux-nfs.org \
    --cc=steved@redhat.com \
    --cc=torvalds@osdl.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;
as well as URLs for NNTP newsgroup(s).