From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH 05/18] writeback: per task dirty rate limit Date: Tue, 06 Sep 2011 17:47:10 +0200 Message-ID: <1315324030.14232.14.camel@twins> References: <20110904015305.367445271@intel.com> <20110904020915.240747479@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Cc: linux-fsdevel@vger.kernel.org, Andrew Morton , Jan Kara , Christoph Hellwig , Dave Chinner , Greg Thelen , Minchan Kim , Vivek Goyal , Andrea Righi , linux-mm , LKML To: Wu Fengguang Return-path: In-Reply-To: <20110904020915.240747479@intel.com> Sender: owner-linux-mm@kvack.org List-Id: linux-fsdevel.vger.kernel.org On Sun, 2011-09-04 at 09:53 +0800, Wu Fengguang wrote: > /* > + * After a task dirtied this many pages, balance_dirty_pages_ratelimited= _nr() > + * will look to see if it needs to start dirty throttling. > + * > + * If dirty_poll_interval is too low, big NUMA machines will call the ex= pensive > + * global_page_state() too often. So scale it near-sqrt to the safety ma= rgin > + * (the number of pages we may dirty without exceeding the dirty limits)= . > + */ > +static unsigned long dirty_poll_interval(unsigned long dirty, > + unsigned long thresh) > +{ > + if (thresh > dirty) > + return 1UL << (ilog2(thresh - dirty) >> 1); > + > + return 1; > +} Where does that sqrt come from?=20 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: email@kvack.org