[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1341978718-6423-1-git-send-email-liwp.linux@gmail.com>
Date: Wed, 11 Jul 2012 11:51:58 +0800
From: Wanpeng Li <liwp.linux@...il.com>
To: linux-mm@...ck.org
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Li Zefan <lizefan@...wei.com>, Tejun Heo <tj@...nel.org>,
"Aneesh Kumar K.V" <aneesh.kumar@...ux.vnet.ibm.com>,
cgroups@...r.kernel.org, linux-kernel@...r.kernel.org,
Wanpeng Li <liwp.linux@...il.com>
Subject: [PATCH] mm/hugetlb_cgroup: Add list_del to remove unused page from hugepage_activelist when hugepage migration
From: Wanpeng Li <liwp@...ux.vnet.ibm.com>
hugepage_activelist is used to track currently used HugeTLB pages.
We can find the in-use HugeTLB pages to support HugeTLB cgroup
removal. Don't keep unused page in hugetlb_activelist too long.
Otherwise, on cgroup removal we should update the unused page's
charge to parent count. To reduce this overhead, remove unused page
from hugepage_activelist immediately.
Signed-off-by: Wanpeng Li <liwp.linux@...il.com>
---
mm/hugetlb_cgroup.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/mm/hugetlb_cgroup.c b/mm/hugetlb_cgroup.c
index b834e8d..d819d66 100644
--- a/mm/hugetlb_cgroup.c
+++ b/mm/hugetlb_cgroup.c
@@ -398,6 +398,7 @@ void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage)
spin_lock(&hugetlb_lock);
h_cg = hugetlb_cgroup_from_page(oldhpage);
set_hugetlb_cgroup(oldhpage, NULL);
+ list_del(&oldhpage->lru);
/* move the h_cg details to new cgroup */
set_hugetlb_cgroup(newhpage, h_cg);
--
1.7.5.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists