From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: Re: [PATCH 3/5] superblock: introduce per-sb cache shrinker infrastructure Date: Thu, 27 May 2010 13:32:34 -0700 Message-ID: <20100527133234.e0814239.akpm@linux-foundation.org> References: <1274777588-21494-1-git-send-email-david@fromorbit.com> <1274777588-21494-4-git-send-email-david@fromorbit.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, xfs@oss.sgi.com To: Dave Chinner Return-path: In-Reply-To: <1274777588-21494-4-git-send-email-david@fromorbit.com> Sender: owner-linux-mm@kvack.org List-Id: linux-fsdevel.vger.kernel.org On Tue, 25 May 2010 18:53:06 +1000 Dave Chinner wrote: > From: Dave Chinner > > With context based shrinkers, we can implement a per-superblock > shrinker that shrinks the caches attached to the superblock. We > currently have global shrinkers for the inode and dentry caches that > split up into per-superblock operations via a coarse proportioning > method that does not batch very well. The global shrinkers also > have a dependency - dentries pin inodes - so we have to be very > careful about how we register the global shrinkers so that the > implicit call order is always correct. > > With a per-sb shrinker callout, we can encode this dependency > directly into the per-sb shrinker, hence avoiding the need for > strictly ordering shrinker registrations. We also have no need for > any proportioning code for the shrinker subsystem already provides > this functionality across all shrinkers. Allowing the shrinker to > operate on a single superblock at a time means that we do less > superblock list traversals and locking and reclaim should batch more > effectively. This should result in less CPU overhead for reclaim and > potentially faster reclaim of items from each filesystem. > I go all tingly when a changelog contains the word "should". OK, it _should_ do X. But _does_ it actually do X? > fs/super.c | 53 +++++++++++++++++++++ > include/linux/fs.h | 7 +++ > 4 files changed, 88 insertions(+), 214 deletions(-) > > diff --git a/fs/dcache.c b/fs/dcache.c > index dba6b6d..d7bd781 100644 > --- a/fs/dcache.c > +++ b/fs/dcache.c > @@ -456,21 +456,16 @@ static void prune_one_dentry(struct dentry * dentry) > * which flags are set. This means we don't need to maintain multiple > * similar copies of this loop. > */ > -static void __shrink_dcache_sb(struct super_block *sb, int *count, int flags) > +static void __shrink_dcache_sb(struct super_block *sb, int count, int flags) Forgot to update the kerneldoc description of `count'. -- 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/ . Don't email: email@kvack.org