From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
"balbir@linux.vnet.ibm.com" <balbir@linux.vnet.ibm.com>,
xemul@openvz.org, "hugh@veritas.com" <hugh@veritas.com>,
"yamamoto@valinux.co.jp" <yamamoto@valinux.co.jp>,
"taka@valinux.co.jp" <taka@valinux.co.jp>
Subject: [Preview] [PATCH] radix tree based page cgroup [6/6] boost by per-cpu
Date: Wed, 5 Mar 2008 21:01:45 +0900 [thread overview]
Message-ID: <20080305210145.7a9b6968.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <20080305205743.79856aa4.kamezawa.hiroyu@jp.fujitsu.com>
This patch adds per-cpu look up cache for get_page_cgroup().
Works well when nearby pages are accessed continuously.
TODO: add flush routine.
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
include/linux/page_cgroup.h | 37 +++++++++++++++++++++++++++++++++++--
mm/page_cgroup.c | 23 ++++++++++++++++++-----
2 files changed, 53 insertions(+), 7 deletions(-)
Index: linux-2.6.25-rc4/mm/page_cgroup.c
===================================================================
--- linux-2.6.25-rc4.orig/mm/page_cgroup.c
+++ linux-2.6.25-rc4/mm/page_cgroup.c
@@ -17,11 +17,10 @@
#include <linux/memcontrol.h>
#include <linux/page_cgroup.h>
#include <linux/err.h>
+#include <linux/interrupt.h>
-
-#define PCGRP_SHIFT (CONFIG_CGROUP_PAGE_CGROUP_ORDER)
-#define PCGRP_SIZE (1 << PCGRP_SHIFT)
+DEFINE_PER_CPU(struct page_cgroup_cache, pcpu_page_cgroup_cache);
struct page_cgroup_head {
struct page_cgroup pc[PCGRP_SIZE];
@@ -71,6 +70,19 @@ void free_page_cgroup(struct page_cgroup
}
+static void save_result(struct page_cgroup *base, unsigned long idx)
+{
+ int hash = idx & (PAGE_CGROUP_NR_CACHE - 1);
+ struct page_cgroup_cache *pcp;
+ /* look up is done under preempt_disable(). then, don't call
+ this under interrupt(). */
+ preempt_disable();
+ pcp = &__get_cpu_var(pcpu_page_cgroup_cache);
+ pcp->ents[hash].idx = idx;
+ pcp->ents[hash].base = base;
+ preempt_enable();
+}
+
/*
* Look up page_cgroup struct for struct page (page's pfn)
* if (allocate == true), look up and allocate new one if necessary.
@@ -78,7 +90,7 @@ void free_page_cgroup(struct page_cgroup
*/
struct page_cgroup *
-get_page_cgroup(struct page *page, gfp_t gfpmask, bool allocate)
+__get_page_cgroup(struct page *page, gfp_t gfpmask, bool allocate)
{
struct page_cgroup_root *root;
struct page_cgroup_head *head;
@@ -107,8 +119,12 @@ retry:
head = radix_tree_lookup(&root->root_node, idx);
rcu_read_unlock();
- if (likely(head))
+ if (likely(head)) {
+ if (!in_interrupt())
+ save_result(&head->pc[0], idx);
return &head->pc[pfn - base_pfn];
+ }
+
if (allocate == false)
return NULL;
Index: linux-2.6.25-rc4/include/linux/page_cgroup.h
===================================================================
--- linux-2.6.25-rc4.orig/include/linux/page_cgroup.h
+++ linux-2.6.25-rc4/include/linux/page_cgroup.h
@@ -24,6 +24,20 @@ struct page_cgroup {
#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache. */
#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* is on active list */
+/* per cpu cashing for fast access */
+#define PAGE_CGROUP_NR_CACHE (0x8)
+struct page_cgroup_cache {
+ struct {
+ unsigned long idx;
+ struct page_cgroup *base;
+ } ents[PAGE_CGROUP_NR_CACHE];
+};
+
+DECLARE_PER_CPU(struct page_cgroup_cache, pcpu_page_cgroup_cache);
+
+#define PCGRP_SHIFT (CONFIG_CGROUP_PAGE_CGROUP_ORDER)
+#define PCGRP_SIZE (1 << PCGRP_SHIFT)
+
/*
* Lookup and return page_cgroup struct.
* returns NULL when
@@ -32,9 +46,28 @@ struct page_cgroup {
* return -ENOMEM if cannot allocate memory.
* If allocate==false, gfpmask will be ignored as a result.
*/
-
struct page_cgroup *
-get_page_cgroup(struct page *page, gfp_t gfpmask, bool allocate);
+__get_page_cgroup(struct page *page, gfp_t gfpmask, bool allocate);
+
+static inline struct page_cgroup *
+get_page_cgroup(struct page *page, gfp_t gfpmask, bool allocate)
+{
+ unsigned long pfn = page_to_pfn(page);
+ struct page_cgroup_cache *pcp;
+ struct page_cgroup *ret;
+ unsigned long idx = pfn >> PCGRP_SHIFT;
+ int hnum = (idx) & (PAGE_CGROUP_NR_CACHE - 1);
+
+ preempt_disable();
+ pcp = &__get_cpu_var(pcpu_page_cgroup_cache);
+ if (pcp->ents[hnum].idx == idx && pcp->ents[hnum].base)
+ ret = pcp->ents[hnum].base + (pfn - (idx << PCGRP_SHIFT));
+ else
+ ret = NULL;
+ preempt_enable();
+
+ return (ret)? ret : __get_page_cgroup(page, gfpmask, allocate);
+}
#else
--
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>
next prev parent reply other threads:[~2008-03-05 12:01 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-05 11:51 [Preview] [PATCH] radix tree based page cgroup [0/6] KAMEZAWA Hiroyuki
2008-03-05 11:55 ` [Preview] [PATCH] radix tree based page cgroup [1/6] KAMEZAWA Hiroyuki
2008-03-05 11:57 ` [Preview] [PATCH] radix tree based page cgroup [2/6] charge and uncharge KAMEZAWA Hiroyuki
2008-03-05 11:57 ` [Preview] [PATCH] radix tree based page cgroup [3/6] move_lists KAMEZAWA Hiroyuki
2008-03-05 12:01 ` KAMEZAWA Hiroyuki [this message]
2008-03-05 12:00 ` [Preview] [PATCH] radix tree based page cgroup [5/6] radix-tree-page-cgroup KAMEZAWA Hiroyuki
2008-03-06 0:28 ` [Preview] [PATCH] radix tree based page cgroup [4/6] migraton KAMEZAWA Hiroyuki
2008-03-06 10:03 ` [Preview] [PATCH] radix tree based page cgroup [0/6] Hirokazu Takahashi
2008-03-06 11:26 ` KAMEZAWA Hiroyuki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080305210145.7a9b6968.kamezawa.hiroyu@jp.fujitsu.com \
--to=kamezawa.hiroyu@jp.fujitsu.com \
--cc=balbir@linux.vnet.ibm.com \
--cc=hugh@veritas.com \
--cc=linux-mm@kvack.org \
--cc=taka@valinux.co.jp \
--cc=xemul@openvz.org \
--cc=yamamoto@valinux.co.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox