Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754409AbZIHKl2 (ORCPT ); Tue, 8 Sep 2009 06:41:28 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754393AbZIHKl0 (ORCPT ); Tue, 8 Sep 2009 06:41:26 -0400 Received: from lon1-post-3.mail.demon.net ([195.173.77.150]:37463 "EHLO lon1-post-3.mail.demon.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754387AbZIHKlZ (ORCPT ); Tue, 8 Sep 2009 06:41:25 -0400 Subject: Re: [RFC PATCH] v2 mm: balance_dirty_pages. reduce calls to global_page_state to reduce cache references From: Richard Kennedy To: Wu Fengguang Cc: Andrew Morton , "chris.mason" , linux-mm , lkml , Peter Zijlstra , Jens Axboe , linux-fsdevel In-Reply-To: <1252317986.2348.15.camel@castor> References: <1252062330.2271.61.camel@castor> <20090906035537.GA16063@localhost> <1252317986.2348.15.camel@castor> Content-Type: text/plain Date: Tue, 08 Sep 2009 11:41:23 +0100 Message-Id: <1252406483.2269.12.camel@castor> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 (2.26.3-1.fc11) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3377 Lines: 96 On Mon, 2009-09-07 at 11:06 +0100, Richard Kennedy wrote: > On Sun, 2009-09-06 at 11:55 +0800, Wu Fengguang wrote: > > On Fri, Sep 04, 2009 at 07:05:30PM +0800, Richard Kennedy wrote: > > > Reducing the number of times balance_dirty_pages calls global_page_state > > > reduces the cache references and so improves write performance on a > > > variety of workloads. > > > > > > 'perf stats' of simple fio write tests shows the reduction in cache > > > access. > > > Where the test is fio 'write,mmap,600Mb,pre_read' on AMD AthlonX2 with > > > 3Gb memory (dirty_threshold approx 600 Mb) > > > running each test 10 times, dropping the fasted & slowest values then > > > taking > > > the average & standard deviation > > > > > > average (s.d.) in millions (10^6) > > > 2.6.31-rc8 648.6 (14.6) > > > +patch 620.1 (16.5) > > > > > > Achieving this reduction is by dropping clip_bdi_dirty_limit as it > > > rereads the counters to apply the dirty_threshold and moving this check > > > up into balance_dirty_pages where it has already read the counters. > > > > > > Also by rearrange the for loop to only contain one copy of the limit > > > tests allows the pdflush test after the loop to use the local copies of > > > the counters rather than rereading them. > > > > > > In the common case with no throttling it now calls global_page_state 5 > > > fewer times and bdi_stat 2 fewer. > > > > > > This version includes the changes suggested by > > > Wu Fengguang > > > > It seems that an redundant pages_written test can be reduced by > > > > --- linux.orig/mm/page-writeback.c 2009-09-06 11:44:39.000000000 +0800 > > +++ linux/mm/page-writeback.c 2009-09-06 11:44:42.000000000 +0800 > > @@ -526,10 +526,6 @@ static void balance_dirty_pages(struct a > > (background_thresh + dirty_thresh) / 2) > > break; > > > > - /* done enough? */ > > - if (pages_written >= write_chunk) > > - break; > > - > > if (!bdi->dirty_exceeded) > > bdi->dirty_exceeded = 1; > > > > @@ -547,7 +543,7 @@ static void balance_dirty_pages(struct a > > pages_written += write_chunk - wbc.nr_to_write; > > /* don't wait if we've done enough */ > > if (pages_written >= write_chunk) > > - continue; > > + break; > > } > > congestion_wait(BLK_RW_ASYNC, HZ/10); > > } > > > > Otherwise the patch looks good to me. Thank you for the nice work! > > > > Reviewed-by: Wu Fengguang > > > Thank you. > > I'll give your suggestion a try & run some tests. I think you're right > it should be better. Not re-reading the global counters again should be > of some benefit! > regards > Richard > I've tried this change and ran a series of tests overnight but it turns out to be worse. The existing patch does better overall. e.g. fio 600mb cache references average (s.d.) in millions (10^6) 2.6.31-rc8 648.6 (14.6) +patch 620.1 (16.5) patch+change 635.6 (10.2) I'm not sure how to trace this to work out exactly why, but without the change the patch is closer to the behavior of the existing code. So I think we should go with it as is. regards Richard -- 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/