From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751404Ab3BTWSF (ORCPT ); Wed, 20 Feb 2013 17:18:05 -0500 Received: from e37.co.us.ibm.com ([32.97.110.158]:46801 "EHLO e37.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750798Ab3BTWSD (ORCPT ); Wed, 20 Feb 2013 17:18:03 -0500 Message-ID: <5125341A.3030305@linux.vnet.ibm.com> Date: Wed, 20 Feb 2013 14:37:46 -0600 From: Seth Jennings User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: Ric Mason CC: Dan Magenheimer , Andrew Morton , Greg Kroah-Hartman , Nitin Gupta , Minchan Kim , Konrad Wilk , Robert Jennings , Jenifer Hopper , Mel Gorman , Johannes Weiner , Rik van Riel , Larry Woodman , Benjamin Herrenschmidt , Dave Hansen , Joe Perches , linux-mm@kvack.org, linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org Subject: Re: [PATCHv5 4/8] zswap: add to mm/ References: <1360780731-11708-1-git-send-email-sjenning@linux.vnet.ibm.com> <1360780731-11708-5-git-send-email-sjenning@linux.vnet.ibm.com> <511F0536.5030802@gmail.com> <51227FDA.7040000@linux.vnet.ibm.com> <0fb2af92-575f-4f5d-a115-829a3cf035e5@default> In-Reply-To: <0fb2af92-575f-4f5d-a115-829a3cf035e5@default> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13022022-7408-0000-0000-00000D011CD5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/18/2013 01:55 PM, Dan Magenheimer wrote: >> From: Seth Jennings [mailto:sjenning@linux.vnet.ibm.com] >> Subject: Re: [PATCHv5 4/8] zswap: add to mm/ >> >> On 02/15/2013 10:04 PM, Ric Mason wrote: >>> On 02/14/2013 02:38 AM, Seth Jennings wrote: >> >>>> + * The statistics below are not protected from concurrent access for >>>> + * performance reasons so they may not be a 100% accurate. However, >>>> + * the do provide useful information on roughly how many times a >>> >>> s/the/they >> >> Ah yes, thanks :) >> >>> >>>> + * certain event is occurring. >>>> +*/ >>>> +static u64 zswap_pool_limit_hit; >>>> +static u64 zswap_reject_compress_poor; >>>> +static u64 zswap_reject_zsmalloc_fail; >>>> +static u64 zswap_reject_kmemcache_fail; >>>> +static u64 zswap_duplicate_entry; >>>> + >>>> +/********************************* >>>> +* tunables >>>> +**********************************/ >>>> +/* Enable/disable zswap (disabled by default, fixed at boot for >>>> now) */ >>>> +static bool zswap_enabled; >>>> +module_param_named(enabled, zswap_enabled, bool, 0); >>> >>> please document in Documentation/kernel-parameters.txt. >> >> Will do. > > Is that a good idea? Konrad's frontswap/cleancache patches > to fix frontswap/cleancache initialization so that backends > can be built/loaded as modules may be merged for 3.9. > AFAIK, module parameters are not included in kernel-parameters.txt. Good point. I'm looking to make zswap modular in the not too distant future. I'll wait on this for now. Seth