Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753415AbZDGGZ0 (ORCPT ); Tue, 7 Apr 2009 02:25:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752709AbZDGGZH (ORCPT ); Tue, 7 Apr 2009 02:25:07 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:52074 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751268AbZDGGZF (ORCPT ); Tue, 7 Apr 2009 02:25:05 -0400 Date: Mon, 6 Apr 2009 23:21:41 -0700 From: Andrew Morton To: "Theodore Ts'o" Cc: Linux Kernel Developers List , Ext4 Developers List , jack@suse.cz, Jens Axboe Subject: Re: [PATCH 1/3] block_write_full_page: Use synchronous writes for WBC_SYNC_ALL writebacks Message-Id: <20090406232141.ebdb426a.akpm@linux-foundation.org> In-Reply-To: <1238185471-31152-2-git-send-email-tytso@mit.edu> References: <1238185471-31152-1-git-send-email-tytso@mit.edu> <1238185471-31152-2-git-send-email-tytso@mit.edu> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.5; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2562 Lines: 66 On Fri, 27 Mar 2009 16:24:29 -0400 "Theodore Ts'o" wrote: > When doing synchronous writes because wbc->sync_mode is set to > WBC_SYNC_ALL, send the write request using WRITE_SYNC, so that we > don't unduly block system calls such as fsync(). > Who what where why when? How does this patch work? > --- > fs/buffer.c | 5 +++-- > 1 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/fs/buffer.c b/fs/buffer.c > index 891e1c7..e7ebd95 100644 > --- a/fs/buffer.c > +++ b/fs/buffer.c > @@ -1714,6 +1714,7 @@ static int __block_write_full_page(struct inode *inode, struct page *page, > struct buffer_head *bh, *head; > const unsigned blocksize = 1 << inode->i_blkbits; > int nr_underway = 0; > + int write_op = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE); > > BUG_ON(!PageLocked(page)); > > @@ -1805,7 +1806,7 @@ static int __block_write_full_page(struct inode *inode, struct page *page, > do { > struct buffer_head *next = bh->b_this_page; > if (buffer_async_write(bh)) { > - submit_bh(WRITE, bh); > + submit_bh(write_op, bh); > nr_underway++; > } > bh = next; > @@ -1859,7 +1860,7 @@ recover: > struct buffer_head *next = bh->b_this_page; > if (buffer_async_write(bh)) { > clear_buffer_dirty(bh); > - submit_bh(WRITE, bh); > + submit_bh(write_op, bh); > nr_underway++; > } > bh = next; ytf can't we document these things? I'm having trouble distinguishing all that code from a pile of crap. I mean, let's graph it: WRITE_SYNC -> WRITE_SYNC_PLUG -> BIO_RW_SYNCIO -> bio_sync() -> REQ_RW_SYNC -> rw_is_sync() -> does something mysterious in get_request() -> rq_is_sync() -> does something mysterious in IO schedulers -> BIO_RW_NOIDLE -> bio_noidle() -> REQ_NOIDLE -> rq_noidle() -> does something mysterious in cfq-iosched only -> BIO_RW_UNPLUG -> bio_unplug() -> REQ_UNPLUG -> OK, the cognoscenti know what this is supposed to do, but it is unused! It this really really so obvious and simple that we can afford to leave WRITE_SYNC semantics undocumented? All this makes it impossible to review your patch. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/