From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760094Ab0JGDtT (ORCPT ); Wed, 6 Oct 2010 23:49:19 -0400 Received: from TYO201.gate.nec.co.jp ([202.32.8.193]:59698 "EHLO tyo201.gate.nec.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752430Ab0JGDtS (ORCPT ); Wed, 6 Oct 2010 23:49:18 -0400 Date: Thu, 7 Oct 2010 12:47:06 +0900 From: Daisuke Nishimura To: balbir@linux.vnet.ibm.com Cc: KAMEZAWA Hiroyuki , containers@lists.linux-foundation.org, "linux-mm@kvack.org" , "linux-kernel@vger.kernel.org" , Daisuke Nishimura Subject: Re: [RFC] Restrict size of page_cgroup->flags Message-Id: <20101007124706.c602649e.nishimura@mxp.nes.nec.co.jp> In-Reply-To: <20101007031459.GL4195@balbir.in.ibm.com> References: <20101006142314.GG4195@balbir.in.ibm.com> <20101007095458.a992969e.nishimura@mxp.nes.nec.co.jp> <20101007031459.GL4195@balbir.in.ibm.com> X-Mailer: Sylpheed 3.0.3 (GTK+ 2.10.14; i686-pc-mingw32) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 7 Oct 2010 08:44:59 +0530 Balbir Singh wrote: > * nishimura@mxp.nes.nec.co.jp [2010-10-07 09:54:58]: > > > On Wed, 6 Oct 2010 19:53:14 +0530 > > Balbir Singh wrote: > > > > > I propose restricting page_cgroup.flags to 16 bits. The patch for the > > > same is below. Comments? > > > > > > > > > Restrict the bits usage in page_cgroup.flags > > > > > > From: Balbir Singh > > > > > > Restricting the flags helps control growth of the flags unbound. > > > Restriciting it to 16 bits gives us the possibility of merging > > > cgroup id with flags (atomicity permitting) and saving a whole > > > long word in page_cgroup > > > > > I agree that reducing the size of page_cgroup would be good and important. > > But, wouldn't it be better to remove ->page, if possible ? > > > > Without the page pointer, how do we go from pc to page for reclaim? > We store page_cgroups in arrays now, so I suppose we can implement pc_to_pfn() using the similar calculation as page_to_pfn() does. IIRC, KAMEZAWA-san talked about it in another thread. Thanks, Daisuke Nishimura.