From: Wanpeng Li <liwanp@linux.vnet.ibm.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
linux-mm@kvack.org, kamezawa.hiroyu@jp.fujitsu.com,
mhocko@suse.cz, akpm@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, Wanpeng Li <liwanp@linux.vnet.ibm.com>
Subject: Re: [PATCH] hugetlb/cgroup: Simplify pre_destroy callback
Date: Wed, 18 Jul 2012 15:24:12 +0800 [thread overview]
Message-ID: <20120718072412.GA10734@kernel> (raw)
In-Reply-To: <1342589649-15066-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>
On Wed, Jul 18, 2012 at 11:04:09AM +0530, Aneesh Kumar K.V wrote:
>From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
>
>Since we cannot fail in hugetlb_cgroup_move_parent, we don't really
>need to check whether cgroup have any change left after that. Also skip
>those hstates for which we don't have any charge in this cgroup.
>
>Based on an earlier patch from Wanpeng Li <liwanp@linux.vnet.ibm.com>
>Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com>
>---
> mm/hugetlb_cgroup.c | 49 +++++++++++++++++++++----------------------------
> 1 file changed, 21 insertions(+), 28 deletions(-)
>
>diff --git a/mm/hugetlb_cgroup.c b/mm/hugetlb_cgroup.c
>index b834e8d..b355fb4 100644
>--- a/mm/hugetlb_cgroup.c
>+++ b/mm/hugetlb_cgroup.c
>@@ -65,18 +65,6 @@ static inline struct hugetlb_cgroup *parent_hugetlb_cgroup(struct cgroup *cg)
> return hugetlb_cgroup_from_cgroup(cg->parent);
> }
>
>-static inline bool hugetlb_cgroup_have_usage(struct cgroup *cg)
>-{
>- int idx;
>- struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_cgroup(cg);
>-
>- for (idx = 0; idx < hugetlb_max_hstate; idx++) {
>- if ((res_counter_read_u64(&h_cg->hugepage[idx], RES_USAGE)) > 0)
>- return true;
>- }
>- return false;
>-}
>-
> static struct cgroup_subsys_state *hugetlb_cgroup_create(struct cgroup *cgroup)
> {
> int idx;
>@@ -159,24 +147,29 @@ static int hugetlb_cgroup_pre_destroy(struct cgroup *cgroup)
> {
> struct hstate *h;
> struct page *page;
>- int ret = 0, idx = 0;
>+ int ret = 0, idx;
>+ struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_cgroup(cgroup);
>
>- do {
>- if (cgroup_task_count(cgroup) ||
>- !list_empty(&cgroup->children)) {
>- ret = -EBUSY;
>- goto out;
>- }
>- for_each_hstate(h) {
>- spin_lock(&hugetlb_lock);
>- list_for_each_entry(page, &h->hugepage_activelist, lru)
>- hugetlb_cgroup_move_parent(idx, cgroup, page);
>
>- spin_unlock(&hugetlb_lock);
>- idx++;
>- }
>- cond_resched();
>- } while (hugetlb_cgroup_have_usage(cgroup));
>+ if (cgroup_task_count(cgroup) ||
>+ !list_empty(&cgroup->children)) {
>+ ret = -EBUSY;
>+ goto out;
>+ }
>+
>+ for_each_hstate(h) {
>+ /*
>+ * if we don't have any charge, skip this hstate
>+ */
>+ idx = hstate_index(h);
>+ if (res_counter_read_u64(&h_cg->hugepage[idx], RES_USAGE) == 0)
>+ continue;
>+ spin_lock(&hugetlb_lock);
>+ list_for_each_entry(page, &h->hugepage_activelist, lru)
>+ hugetlb_cgroup_move_parent(idx, cgroup, page);
>+ spin_unlock(&hugetlb_lock);
>+ VM_BUG_ON(res_counter_read_u64(&h_cg->hugepage[idx], RES_USAGE));
>+ }
> out:
> return ret;
> }
>--
>1.7.10
>
>--
>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>
--
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:[~2012-07-18 7:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-18 5:34 [PATCH] hugetlb/cgroup: Simplify pre_destroy callback Aneesh Kumar K.V
2012-07-18 7:24 ` Wanpeng Li [this message]
2012-07-18 21:26 ` Andrew Morton
2012-07-19 2:55 ` Aneesh Kumar K.V
2012-07-19 6:59 ` Li Zefan
2012-07-19 9:41 ` Aneesh Kumar K.V
2012-07-19 10:25 ` Kamezawa Hiroyuki
2012-07-19 11:26 ` Aneesh Kumar K.V
2012-07-19 11:42 ` Michal Hocko
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=20120718072412.GA10734@kernel \
--to=liwanp@linux.vnet.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.cz \
/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;
as well as URLs for NNTP newsgroup(s).