From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755085Ab0KXNmS (ORCPT ); Wed, 24 Nov 2010 08:42:18 -0500 Received: from canuck.infradead.org ([134.117.69.58]:38151 "EHLO canuck.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751708Ab0KXNmR convert rfc822-to-8bit (ORCPT ); Wed, 24 Nov 2010 08:42:17 -0500 Subject: Re: [PATCH 06/13] writeback: bdi write bandwidth estimation From: Peter Zijlstra To: Wu Fengguang Cc: Andrew Morton , Jan Kara , "Li, Shaohua" , Christoph Hellwig , Dave Chinner , "Theodore Ts'o" , Chris Mason , Mel Gorman , Rik van Riel , KOSAKI Motohiro , linux-mm , "linux-fsdevel@vger.kernel.org" , LKML In-Reply-To: <20101124132012.GA12117@localhost> References: <20101117042720.033773013@intel.com> <20101117042850.002299964@intel.com> <1290596732.2072.450.camel@laptop> <20101124121046.GA8333@localhost> <1290603047.2072.465.camel@laptop> <20101124131437.GE10413@localhost> <20101124132012.GA12117@localhost> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Date: Wed, 24 Nov 2010 14:42:09 +0100 Message-ID: <1290606129.2072.467.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2010-11-24 at 21:20 +0800, Wu Fengguang wrote: > > (jiffies - bdi->write_bandwidth_update_time < elapsed) > > this will be true if someone else has _done_ overlapped estimation, > otherwise it will equal: > > jiffies - bdi->write_bandwidth_update_time == elapsed > > Sorry the comment needs updating. Right, but its racy as hell..