From mboxrd@z Thu Jan 1 00:00:00 1970 From: Balbir Singh Subject: Re: [PATCH 3/3] Provide control over unmapped pages (v4) Date: Fri, 28 Jan 2011 17:32:47 +0530 Message-ID: <20110128120247.GE5054@balbir.in.ibm.com> References: <20110125051003.13762.35120.stgit@localhost6.localdomain6> <20110125051015.13762.13429.stgit@localhost6.localdomain6> <20110128064851.GB5054@balbir.in.ibm.com> <20110128165605.3cbe5208.kamezawa.hiroyu@jp.fujitsu.com> <20110128081928.GC5054@balbir.in.ibm.com> <20110128171744.b7b37703.kamezawa.hiroyu@jp.fujitsu.com> Reply-To: balbir@linux.vnet.ibm.com Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Cc: Minchan Kim , linux-mm@kvack.org, akpm@linux-foundation.org, npiggin@kernel.dk, kvm@vger.kernel.org, linux-kernel@vger.kernel.org, kosaki.motohiro@jp.fujitsu.com, cl@linux.com To: KAMEZAWA Hiroyuki Return-path: Content-Disposition: inline In-Reply-To: <20110128171744.b7b37703.kamezawa.hiroyu@jp.fujitsu.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org * KAMEZAWA Hiroyuki [2011-01-28 17:17:44]: > On Fri, 28 Jan 2011 13:49:28 +0530 > Balbir Singh wrote: > > > * KAMEZAWA Hiroyuki [2011-01-28 16:56:05]: > > > > BTW, it seems this doesn't work when some apps use huge shmem. > > > How to handle the issue ? > > > > > > > Could you elaborate further? > > > == > static inline unsigned long zone_unmapped_file_pages(struct zone *zone) > { > unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED); > unsigned long file_lru = zone_page_state(zone, NR_INACTIVE_FILE) + > zone_page_state(zone, NR_ACTIVE_FILE); > > /* > * It's possible for there to be more file mapped pages than > * accounted for by the pages on the file LRU lists because > * tmpfs pages accounted for as ANON can also be FILE_MAPPED > */ > return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0; > } Yes, I did :) The word huge confused me. I am not sure if there is an easy accounting fix for this one, though given the approximate nature of the control, I am not sure it would matter very much. But you do have a very good point. -- Three Cheers, Balbir