From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wu Fengguang Subject: Re: [PATCH 3/5] writeback: fix dirtied pages accounting on sub-page writes Date: Tue, 22 Nov 2011 20:30:01 +0800 Message-ID: <20111122123001.GA16054@localhost> References: <20111121130342.211953629@intel.com> <20111121131215.905222115@intel.com> <20111122001127.GG4017@quack.suse.cz> <20111122092110.GB12864@localhost> <20111122122157.GB8058@quack.suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "linux-fsdevel@vger.kernel.org" , Peter Zijlstra , Christoph Hellwig , Andrew Morton , LKML To: Jan Kara Return-path: Received: from mga14.intel.com ([143.182.124.37]:26959 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750851Ab1KVMaI (ORCPT ); Tue, 22 Nov 2011 07:30:08 -0500 Content-Disposition: inline In-Reply-To: <20111122122157.GB8058@quack.suse.cz> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: > > @@ -1743,6 +1738,8 @@ void account_page_dirtied(struct page *p > > __inc_bdi_stat(mapping->backing_dev_info, BDI_DIRTIED); > > task_dirty_inc(current); > > task_io_account_write(PAGE_CACHE_SIZE); > > + current->nr_dirtied++; > > + __get_cpu_var(bdp_ratelimits)++; > I think you need preempt_disable() and preempt_enable() pair around > __get_cpu_var(). Otherwise a process could get rescheduled in the middle of > read-modify-write cycle... Hmm, I'm not worried about it at all, because bdp_ratelimits don't need to be accurate. In normal cases it won't even trigger one single call to balance_dirty_pages(). btw, account_page_dirtied() is called inside spinlock, will it be sufficient? Thanks, Fengguang