From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wu Fengguang Subject: Re: [PATCH 03/17] writeback: introduce writeback_control.inodes_cleaned Date: Fri, 13 May 2011 11:36:05 +0800 Message-ID: <20110513033605.GC8016@localhost> References: <20110512135706.937596128@intel.com> <20110512140031.025181367@intel.com> <20110512224420.GJ19446@dastard> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Andrew Morton , Jan Kara , Mel Gorman , Christoph Hellwig , "linux-fsdevel@vger.kernel.org" , LKML To: Dave Chinner Return-path: Content-Disposition: inline In-Reply-To: <20110512224420.GJ19446@dastard> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Fri, May 13, 2011 at 06:44:20AM +0800, Dave Chinner wrote: > On Thu, May 12, 2011 at 09:57:09PM +0800, Wu Fengguang wrote: > > The flusher works on dirty inodes in batches, and may quit prematurely > > if the batch of inodes happen to be metadata-only dirtied: in this case > > wbc->nr_to_write won't be decreased at all, which stands for "no pages > > written" but also mis-interpreted as "no progress". > > > > So introduce writeback_control.inodes_cleaned to count the inodes get > > cleaned. A non-zero value means there are some progress on writeback, > > in which case more writeback can be tried. > > Why introduce a new field for this? Yeah sorry, but this is an intermediate field that will be removed in patch 14. > Just decrement nr_to_write for every write_inode() call made in > writeback_single_inode().... There are two problems - nr_to_write has always been "# of pages written" and writeback_sb_inodes() is actually making use of it to do page accounting in work->nr_pages. - write_inode() does not always succeed, and its return value is not reliable on every filesystem.. (I actually tried this approach in v1 and found sync(1) hang on NFS) Thanks, Fengguang