From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755392Ab0GLWQW (ORCPT ); Mon, 12 Jul 2010 18:16:22 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:39468 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753043Ab0GLWQV (ORCPT ); Mon, 12 Jul 2010 18:16:21 -0400 Date: Mon, 12 Jul 2010 15:15:18 -0700 From: Andrew Morton To: Wu Fengguang Cc: Christoph Hellwig , Dave Chinner , Martin Bligh , Michael Rubin , Peter Zijlstra , Jan Kara , Peter Zijlstra , , Linux Memory Management List , LKML Subject: Re: [PATCH 5/6] writeback: fix queue_io() ordering Message-Id: <20100712151518.d4cdfebc.akpm@linux-foundation.org> In-Reply-To: <20100711021749.163345723@intel.com> References: <20100711020656.340075560@intel.com> <20100711021749.163345723@intel.com> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.9; x86_64-pc-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 On Sun, 11 Jul 2010 10:07:01 +0800 Wu Fengguang wrote: > This was not a bug, since b_io is empty for kupdate writeback. > The next patch will do requeue_io() for non-kupdate writeback, > so let's fix it. > > CC: Dave Chinner > Cc: Martin Bligh > Cc: Michael Rubin > Cc: Peter Zijlstra > Signed-off-by: Fengguang Wu I assumed you didn't mean to sign this twice so I removed this signoff. > Signed-off-by: Wu Fengguang > --- > fs/fs-writeback.c | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > --- linux-next.orig/fs/fs-writeback.c 2010-07-11 09:13:31.000000000 +0800 > +++ linux-next/fs/fs-writeback.c 2010-07-11 09:13:32.000000000 +0800 > @@ -252,11 +252,14 @@ static void move_expired_inodes(struct l > } > > /* > - * Queue all expired dirty inodes for io, eldest first. > + * Queue all expired dirty inodes for io, eldest first: > + * (newly dirtied) => b_dirty inodes > + * => b_more_io inodes > + * => remaining inodes in b_io => (dequeue for sync) > */ > static void queue_io(struct bdi_writeback *wb, unsigned long *older_than_this) > { > - list_splice_init(&wb->b_more_io, wb->b_io.prev); > + list_splice_init(&wb->b_more_io, &wb->b_io); > move_expired_inodes(&wb->b_dirty, &wb->b_io, older_than_this); > }