From: "Vladimir V. Saveliev" <vs@namesys.com>
To: Christoph Hellwig <hch@infradead.org>
Cc: Reiserfs-Dev@namesys.com, Linux-Kernel@Vger.Kernel.ORG,
linux-fsdevel@vger.kernel.org
Subject: batched write
Date: Thu, 15 Jun 2006 02:08:32 +0400 [thread overview]
Message-ID: <1150322912.6322.129.camel@tribesman.namesys.com> (raw)
In-Reply-To: <20060608121006.GA8474@infradead.org>
Hello
On Thu, 2006-06-08 at 13:10 +0100, Christoph Hellwig wrote:
> On Thu, Jun 08, 2006 at 03:26:40PM +0400, Vladimir V. Saveliev wrote:
> > > > It may go to the kernel as a 64MB write, but VFS sends it to the FS as
> > > > 64MB/4k separate 4k writes.
> > >
> > > Nonsense,
> >
> > Hans refers to generic_file_write which does
> > prepare_write
> > copy_from_user
> > commit_write
> > for each page.
>
> That's not really the vfs but the generic pagecache routines. For some
> filesystems (e.g. XFS) only reservations for delayed allocations are
> performed in this path so it doesn't really matter. For not so advanced
> filesystems batching these calls would definitly be very helpful. Patches
> to get there are very welcome.
>
The core of generic_file_buffered_write is
do {
grab_cache_page();
a_ops->prepare_write();
copy_from_user();
a_ops->commit_write();
filemap_set_next_iovec();
balance_dirty_pages_ratelimited();
} while (count);
Would it make sence to rework this code with adding new address_space
operation - fill_pages so that looks like:
do {
a_ops->fill_pages();
filemap_set_next_iovec();
balance_dirty_pages_ratelimited();
} while (count);
generic implementation of fill_pages would look like:
generic_fill_pages()
{
grab_cache_page();
a_ops->prepare_write();
copy_from_user();
a_ops->commit_write();
}
I believe that filesystem developers will want to exploit that
operation.
Any opinion on this plan is welcomed. I would try to code whatever we
will have developed (I hope) in result of this discussion.
next parent reply other threads:[~2006-06-14 22:11 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <44736D3E.8090808@namesys.com>
[not found] ` <20060524175312.GA3579@zero>
[not found] ` <44749E24.40203@namesys.com>
[not found] ` <20060608110044.GA5207@suse.de>
[not found] ` <1149766000.6336.29.camel@tribesman.namesys.com>
[not found] ` <20060608121006.GA8474@infradead.org>
2006-06-14 22:08 ` Vladimir V. Saveliev [this message]
2006-06-17 17:04 ` batched write Andrew Morton
2006-06-17 17:51 ` Hans Reiser
2006-06-18 11:20 ` Nix
2006-06-19 9:05 ` Hans Reiser
2006-06-19 11:32 ` Miklos Szeredi
2006-06-19 16:39 ` Hans Reiser
2006-06-19 17:35 ` Miklos Szeredi
2006-06-19 17:52 ` Akshat Aranya
2006-06-19 20:39 ` Hans Reiser
2006-06-19 16:27 ` Andreas Dilger
2006-06-19 16:51 ` Hans Reiser
2006-06-19 18:50 ` Andreas Dilger
2006-06-19 20:47 ` Hans Reiser
2006-06-20 0:01 ` David Chinner
2006-06-20 7:19 ` Hans Reiser
2006-06-20 7:26 ` Andrew Morton
2006-06-20 9:02 ` Steven Whitehouse
2006-06-20 16:26 ` Vladimir V. Saveliev
2006-06-20 17:29 ` Hans Reiser
2006-06-19 18:28 ` Vladimir V. Saveliev
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=1150322912.6322.129.camel@tribesman.namesys.com \
--to=vs@namesys.com \
--cc=Linux-Kernel@Vger.Kernel.ORG \
--cc=Reiserfs-Dev@namesys.com \
--cc=hch@infradead.org \
--cc=linux-fsdevel@vger.kernel.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).