Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754997Ab2HaVKw (ORCPT ); Fri, 31 Aug 2012 17:10:52 -0400 Received: from rcsinet15.oracle.com ([148.87.113.117]:22453 "EHLO rcsinet15.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752326Ab2HaVKu (ORCPT ); Fri, 31 Aug 2012 17:10:50 -0400 Date: Fri, 31 Aug 2012 17:10:38 -0400 From: Konrad Rzeszutek Wilk To: Dan Magenheimer Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Hugh Dickins Subject: Re: [PATCH] frontswap: support exclusive gets if tmem backend is capable Message-ID: <20120831211038.GA20594@localhost.localdomain> References: <5557ec97-daa1-41a6-b3db-671f116ddc50@default> <20120831170814.GF18929@localhost.localdomain> <89702248-0c3f-465c-bc1f-2115a21c8c89@default> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <89702248-0c3f-465c-bc1f-2115a21c8c89@default> User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: acsinet22.oracle.com [141.146.126.238] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2966 Lines: 86 On Fri, Aug 31, 2012 at 10:23:21AM -0700, Dan Magenheimer wrote: > > From: Konrad Rzeszutek Wilk > > Hi Konrad -- > > Thanks for the fast feedback! Sure. Had a couple of minutes in between the talks. > > > > +#define FRONTSWAP_HAS_EXCLUSIVE_GETS > > > +extern void frontswap_tmem_exclusive_gets(bool); > > > > I don't think you need the #define here.. > > The #define is used by an ifdef in the backend to ensure > that it is using a version of frontswap that has this feature, > so avoids the need for the frontend (frontswap) and > the backend (e.g. zcache2) to merge in lockstep. Then lets post the ramster patch as part of the patch series which will include this patch as the first component and the second would be the ramster part. > > > > +EXPORT_SYMBOL(frontswap_tmem_exclusive_gets); > > > > We got two of these now - the writethrough and this one. Merging > > them in one function and one flag might be better. So something like: > > static int frontswap_mode = 0; > > > > void frontswap_set_mode(int set_mode) > > { > > if (mode & (FRONTSWAP_WRITETH | FRONTSWAP_EXCLUS..) > > mode |= set_mode; > > } > > IMHO, it's too soon to try to optimize this. One or > both of these may go away. Or the mode may become > more fine-grained in the future (e.g. to allow individual > gets to be exclusive). Sure. At which point we can modify it/remove this. Lets do the 'frontswap_set_mode' as it seems much nicer than just adding extra frontswap_some_new_function. > > So unless you object strongly, let's just leave this > as is for now and revisit in the future if more "modes" > are needed. Nah. Lets do the mode. > > > ... and > > > + > > > +/* > > > * Called when a swap device is swapon'd. > > > */ > > > void __frontswap_init(unsigned type) > > > @@ -174,8 +190,13 @@ int __frontswap_load(struct page *page) > > > BUG_ON(sis == NULL); > > > if (frontswap_test(sis, offset)) > > > ret = (*frontswap_ops.load)(type, offset, page); > > > - if (ret == 0) > > > + if (ret == 0) { > > > inc_frontswap_loads(); > > > + if (frontswap_tmem_exclusive_gets_enabled) { > > > > For these perhaps use asm goto for optimization? Is this showing up in > > perf as a hotspot? The asm goto might be a bit too much. > > This is definitely not a performance hotspot. Frontswap code > only is ever executed in situations where a swap-to-disk would > otherwise have occurred. And in this case, this code only > gets executed after the frontswap_test has confirmed that > tmem does already contain the page of data, in which case > there is thousands of cycles spent copying and/or decompressing. Ok. Lets leave this with just a check: if (frontswap_flag & FRONTSWAP_EXCLUSIVE_GET)... > > Dan -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/