From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755022Ab3IMUXa (ORCPT ); Fri, 13 Sep 2013 16:23:30 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:45247 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753441Ab3IMUX2 (ORCPT ); Fri, 13 Sep 2013 16:23:28 -0400 Date: Fri, 13 Sep 2013 21:23:26 +0100 From: Al Viro To: Linus Torvalds Cc: Andrew Morton , Stephen Rothwell , linux-next , Linux Kernel Mailing List , Dave Chinner , Glauber Costa Subject: Re: linux-next: manual merge of the akpm tree with Linus' tree Message-ID: <20130913202326.GV13318@ZenIV.linux.org.uk> References: <20130910223624.GC13318@ZenIV.linux.org.uk> <20130910154116.cc4afe048213a779040ea3cc@linux-foundation.org> <20130910224823.GE13318@ZenIV.linux.org.uk> <20130910225934.GF13318@ZenIV.linux.org.uk> <20130913200000.GT13318@ZenIV.linux.org.uk> <20130913201803.GU13318@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130913201803.GU13318@ZenIV.linux.org.uk> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 13, 2013 at 09:18:03PM +0100, Al Viro wrote: > On Fri, Sep 13, 2013 at 09:00:00PM +0100, Al Viro wrote: > > > - d_lru_shrink_move: move from the "global" lru list to a private shrinker list > > > - d_shrink_add/del: fairly obvious. > > > > > > And then "denty_lru_add/del" that actually take the current state into > > > account and do the right thing. Those we had before, I'm just > > > explaining the difference from the low-level operations that have > > > fixed "from this state to that" semantics > > > > Looks sane; FWIW, the variant I'm playing with uses two independent > > flags for "shrinker" and "per-sb", but AFAICS that doesn't yield better > > code. > > Actually, it does yield slightly better code... Look - if you take your > patch and replace LRU_LIST | SHRINK_LIST combination with bare SHRINK_LIST > (which can't occur right now). Then all transitions turn into flipping ^^^ > a single bit, Obviously not *and* lru->shrink is common ;-/ Anyway, any benefit from microoptimizing that will drown in noise, so... nevermind that idea.