linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [RFC] Restrict size of page_cgroup->flags
@ 2010-10-06 14:23 Balbir Singh
  2010-10-06 23:58 ` KAMEZAWA Hiroyuki
  2010-10-07  0:54 ` Daisuke Nishimura
  0 siblings, 2 replies; 13+ messages in thread
From: Balbir Singh @ 2010-10-06 14:23 UTC (permalink / raw)
  To: KAMEZAWA Hiroyuki, containers
  Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org

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 <balbir@linux.vnet.ibm.com>

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

Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
---

 include/linux/page_cgroup.h |    3 +++
 mm/page_cgroup.c            |    1 +
 2 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/include/linux/page_cgroup.h b/include/linux/page_cgroup.h
index 872f6b1..10c37b4 100644
--- a/include/linux/page_cgroup.h
+++ b/include/linux/page_cgroup.h
@@ -44,8 +44,11 @@ enum {
 	PCG_FILE_WRITEBACK, /* page is under writeback */
 	PCG_FILE_UNSTABLE_NFS, /* page is NFS unstable */
 	PCG_MIGRATION, /* under page migration */
+	PCG_MAX_NR,
 };
 
+#define PCG_MAX_BIT_SIZE	16
+
 #define TESTPCGFLAG(uname, lname)			\
 static inline int PageCgroup##uname(struct page_cgroup *pc)	\
 	{ return test_bit(PCG_##lname, &pc->flags); }
diff --git a/mm/page_cgroup.c b/mm/page_cgroup.c
index 5bffada..e16ad2e 100644
--- a/mm/page_cgroup.c
+++ b/mm/page_cgroup.c
@@ -258,6 +258,7 @@ void __init page_cgroup_init(void)
 	unsigned long pfn;
 	int fail = 0;
 
+	BUILD_BUG_ON(PCG_MAX_NR >= PCG_MAX_BIT_SIZE);
 	if (mem_cgroup_disabled())
 		return;
 

-- 
	Three Cheers,
	Balbir

--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2010-10-07  5:47 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-06 14:23 [RFC] Restrict size of page_cgroup->flags Balbir Singh
2010-10-06 23:58 ` KAMEZAWA Hiroyuki
2010-10-07  3:12   ` Balbir Singh
2010-10-07  3:18     ` KAMEZAWA Hiroyuki
2010-10-07  3:56       ` Balbir Singh
2010-10-07  4:22         ` KAMEZAWA Hiroyuki
2010-10-07  5:31           ` Balbir Singh
2010-10-07  5:39             ` KAMEZAWA Hiroyuki
2010-10-07  5:44           ` Daisuke Nishimura
2010-10-07  0:54 ` Daisuke Nishimura
2010-10-07  3:14   ` Balbir Singh
2010-10-07  3:47     ` Daisuke Nishimura
2010-10-07  4:08       ` Balbir Singh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).