From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755639Ab3KZKV1 (ORCPT ); Tue, 26 Nov 2013 05:21:27 -0500 Received: from merlin.infradead.org ([205.233.59.134]:43341 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754746Ab3KZKVY (ORCPT ); Tue, 26 Nov 2013 05:21:24 -0500 Date: Tue, 26 Nov 2013 11:20:53 +0100 From: Peter Zijlstra To: Dave Chinner Cc: Johannes Weiner , Andrew Morton , Rik van Riel , Jan Kara , Vlastimil Babka , Tejun Heo , Andi Kleen , Andrea Arcangeli , Greg Thelen , Christoph Hellwig , Hugh Dickins , KOSAKI Motohiro , Mel Gorman , Minchan Kim , Michel Lespinasse , Seth Jennings , Roman Gushchin , Ozgun Erdogan , Metin Doslu , linux-mm@kvack.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [patch 6/9] mm + fs: store shadow entries in page cache Message-ID: <20131126102053.GJ10022@twins.programming.kicks-ass.net> References: <1385336308-27121-1-git-send-email-hannes@cmpxchg.org> <1385336308-27121-7-git-send-email-hannes@cmpxchg.org> <20131125231716.GJ8803@dastard> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131125231716.GJ8803@dastard> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Nov 26, 2013 at 10:17:16AM +1100, Dave Chinner wrote: > void truncate_inode_pages_final(struct address_space *mapping) > { > mapping_set_exiting(mapping); > if (inode->i_data.nrpages || inode->i_data.nrshadows) { > /* > * spinlock barrier to ensure all modifications are > * complete before we do the final truncate > */ > spin_lock_irq(&mapping->tree_lock); > spin_unlock_irq(&mapping->tree_lock); spin_unlock_wait() ? Its cheaper, but prone to starvation; its typically useful when you're waiting for the last owner to go away and know there won't be any new ones around. > truncate_inode_pages_range(mapping, 0, (loff_t)-1); > }