From: Nick Piggin <npiggin@suse.de>
To: Christoph Hellwig <hch@infradead.org>
Cc: Linux Memory Management List <linux-mm@kvack.org>,
linux-fsdevel@vger.kernel.org
Subject: Re: [patch][rfc] mm: new address space calls
Date: Sun, 1 Mar 2009 03:45:21 +0100 [thread overview]
Message-ID: <20090301024521.GB16742@wotan.suse.de> (raw)
In-Reply-To: <20090228232421.GB11191@infradead.org>
On Sat, Feb 28, 2009 at 06:24:21PM -0500, Christoph Hellwig wrote:
> On Wed, Feb 25, 2009 at 11:48:39AM +0100, Nick Piggin wrote:
> > This is about the last change to generic code I need for fsblock.
> > Comments?
> >
> > Introduce new address space operations sync and release, which can be used
> > by a filesystem to synchronize and release per-address_space private metadata.
> > They generalise sync_mapping_buffers, invalidate_inode_buffers, and
> > remove_inode_buffers calls, and get another step closer to divorcing
> > buffer heads from core mm/fs code.
>
> > void invalidate_inode_buffers(struct inode *inode)
> > {
> > - if (inode_has_buffers(inode)) {
> > - struct address_space *mapping = &inode->i_data;
> > + struct address_space *mapping = &inode->i_data;
> > +
> > + if (mapping_has_private(mapping)) {
> > struct list_head *list = &mapping->private_list;
> > struct address_space *buffer_mapping = mapping->assoc_mapping;
>
> I'ts not really helping much here as we still directly poke into the
> buffer_head list.
This is in fs/buffer.c.
Or do you object to the definition of mapping_has_private? Yes that
still checks the private_list, but it would be trivial to convert it
over to checking a bit in the mapping now. I just didn't do it because
fsblock also uses the private_list.
>
> > --- linux-2.6.orig/fs/fs-writeback.c
> > +++ linux-2.6/fs/fs-writeback.c
> > @@ -782,9 +782,15 @@ int generic_osync_inode(struct inode *in
> > if (what & OSYNC_DATA)
> > err = filemap_fdatawrite(mapping);
> > if (what & (OSYNC_METADATA|OSYNC_DATA)) {
> > - err2 = sync_mapping_buffers(mapping);
> > - if (!err)
> > - err = err2;
> > + if (!mapping->a_ops->sync) {
> > + err2 = sync_mapping_buffers(mapping);
> > + if (!err)
> > + err = err2;
> > + } else {
> > + err2 = mapping->a_ops->sync(mapping);
> > + if (!err)
> > + err = err2;
> > + }
> > }
> > if (what & OSYNC_DATA) {
> > err2 = filemap_fdatawait(mapping);
>
> I'd really prefer not having the default fallbacks, these kinds
> of implicit fallbacks make the code really hard to maintain over
> long term.
That seems to be the default way of adding callbacks, but
I agree I don't like it really and I don't like the existing
fallbacks in the tree.
> I also wonder if moving the filemap_fdatawrite/filemap_fdatawait
> into the method would help. In fact it's surprisingly similar
> to ->fsync in many ways, that I wonder if these should be one
> operation.
It would be nice if possible. Do you have an fsync patchset
coming along?
> > */
> > void clear_inode(struct inode *inode)
> > {
> > + struct address_space *mapping = &inode->i_data;
> > +
> > might_sleep();
> > - invalidate_inode_buffers(inode);
> > + if (!mapping->a_ops->release)
> > + invalidate_inode_buffers(inode);
>
> That's a weird one. The implict default shouldn't be in a different
> place from the method.
It really sucks in there. buffer.c even has a "FIXME: invalidate_inode
buffers should not be called in clear_inode"... Of course buffer.c is
never going to be fixed, but I didn't want to carry that over to
fsblock.
prev parent reply other threads:[~2009-03-01 2:45 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-25 10:48 [patch][rfc] mm: new address space calls Nick Piggin
2009-02-25 20:59 ` Chris Mason
2009-02-26 5:17 ` Nick Piggin
2009-02-26 13:21 ` Chris Mason
2009-02-27 11:26 ` Nick Piggin
2009-02-27 13:52 ` Chris Mason
2009-02-28 5:52 ` Nick Piggin
2009-02-28 23:19 ` Christoph Hellwig
2009-03-01 2:38 ` Nick Piggin
2009-02-28 23:24 ` Christoph Hellwig
2009-03-01 2:45 ` Nick Piggin [this message]
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=20090301024521.GB16742@wotan.suse.de \
--to=npiggin@suse.de \
--cc=hch@infradead.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mm@kvack.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).