From: Balbir Singh <balbir@linux.vnet.ibm.com>
To: linux-mm@kvack.org
Cc: Sudhir Kumar <skumar@linux.vnet.ibm.com>,
YAMAMOTO Takashi <yamamoto@valinux.co.jp>,
Paul Menage <menage@google.com>,
lizf@cn.fujitsu.com, linux-kernel@vger.kernel.org,
nishimura@mxp.nes.nec.co.jp, Pavel Emelianov <xemul@openvz.org>,
hugh@veritas.com, Balbir Singh <balbir@linux.vnet.ibm.com>,
Andrew Morton <akpm@linux-foundation.org>,
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Subject: [-mm][PATCH 2/2] Memory rlimit enhance mm_owner_changed callback to deal with exited owner
Date: Mon, 11 Aug 2008 15:37:43 +0530 [thread overview]
Message-ID: <20080811100743.26336.6497.sendpatchset@balbir-laptop> (raw)
In-Reply-To: <20080811100719.26336.98302.sendpatchset@balbir-laptop>
mm_owner_changed callback can also be called with new task set to NULL.
(race between try_to_unuse() and mm->owner exiting). Surprisingly the order
of cgroup arguments being passed was incorrect (proves that we did not
run into mm_owner_changed callback at all).
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
---
mm/memrlimitcgroup.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff -puN mm/memrlimitcgroup.c~memrlimit-handle-mm-owner-notification-with-task-null mm/memrlimitcgroup.c
--- linux-2.6.27-rc1/mm/memrlimitcgroup.c~memrlimit-handle-mm-owner-notification-with-task-null 2008-08-05 10:56:56.000000000 +0530
+++ linux-2.6.27-rc1-balbir/mm/memrlimitcgroup.c 2008-08-05 11:24:04.000000000 +0530
@@ -73,6 +73,12 @@ void memrlimit_cgroup_uncharge_as(struct
{
struct memrlimit_cgroup *memrcg;
+ /*
+ * Uncharge happened as a part of the mm_owner_changed callback
+ */
+ if (!mm->owner)
+ return;
+
memrcg = memrlimit_cgroup_from_task(mm->owner);
res_counter_uncharge(&memrcg->as_res, (nr_pages << PAGE_SHIFT));
}
@@ -235,8 +241,8 @@ out:
* This callback is called with mmap_sem held
*/
static void memrlimit_cgroup_mm_owner_changed(struct cgroup_subsys *ss,
- struct cgroup *cgrp,
struct cgroup *old_cgrp,
+ struct cgroup *cgrp,
struct task_struct *p)
{
struct memrlimit_cgroup *memrcg, *old_memrcg;
@@ -246,7 +252,12 @@ static void memrlimit_cgroup_mm_owner_ch
memrcg = memrlimit_cgroup_from_cgrp(cgrp);
old_memrcg = memrlimit_cgroup_from_cgrp(old_cgrp);
- if (res_counter_charge(&memrcg->as_res, (mm->total_vm << PAGE_SHIFT)))
+ /*
+ * If we don't have a new cgroup, we just uncharge from the old one.
+ * It means that the task is going away
+ */
+ if (memrcg &&
+ res_counter_charge(&memrcg->as_res, (mm->total_vm << PAGE_SHIFT)))
goto out;
res_counter_uncharge(&old_memrcg->as_res, (mm->total_vm << PAGE_SHIFT));
out:
_
--
Warm Regards,
Balbir Singh
Linux Technology Center
IBM, ISTL
WARNING: multiple messages have this Message-ID (diff)
From: Balbir Singh <balbir@linux.vnet.ibm.com>
To: linux-mm@kvack.org
Cc: Sudhir Kumar <skumar@linux.vnet.ibm.com>,
YAMAMOTO Takashi <yamamoto@valinux.co.jp>,
Paul Menage <menage@google.com>,
lizf@cn.fujitsu.com, linux-kernel@vger.kernel.org,
nishimura@mxp.nes.nec.co.jp, Pavel Emelianov <xemul@openvz.org>,
hugh@veritas.com, Balbir Singh <balbir@linux.vnet.ibm.com>,
Andrew Morton <akpm@linux-foundation.org>,
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Subject: [-mm][PATCH 2/2] Memory rlimit enhance mm_owner_changed callback to deal with exited owner
Date: Mon, 11 Aug 2008 15:37:43 +0530 [thread overview]
Message-ID: <20080811100743.26336.6497.sendpatchset@balbir-laptop> (raw)
In-Reply-To: <20080811100719.26336.98302.sendpatchset@balbir-laptop>
mm_owner_changed callback can also be called with new task set to NULL.
(race between try_to_unuse() and mm->owner exiting). Surprisingly the order
of cgroup arguments being passed was incorrect (proves that we did not
run into mm_owner_changed callback at all).
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
---
mm/memrlimitcgroup.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff -puN mm/memrlimitcgroup.c~memrlimit-handle-mm-owner-notification-with-task-null mm/memrlimitcgroup.c
--- linux-2.6.27-rc1/mm/memrlimitcgroup.c~memrlimit-handle-mm-owner-notification-with-task-null 2008-08-05 10:56:56.000000000 +0530
+++ linux-2.6.27-rc1-balbir/mm/memrlimitcgroup.c 2008-08-05 11:24:04.000000000 +0530
@@ -73,6 +73,12 @@ void memrlimit_cgroup_uncharge_as(struct
{
struct memrlimit_cgroup *memrcg;
+ /*
+ * Uncharge happened as a part of the mm_owner_changed callback
+ */
+ if (!mm->owner)
+ return;
+
memrcg = memrlimit_cgroup_from_task(mm->owner);
res_counter_uncharge(&memrcg->as_res, (nr_pages << PAGE_SHIFT));
}
@@ -235,8 +241,8 @@ out:
* This callback is called with mmap_sem held
*/
static void memrlimit_cgroup_mm_owner_changed(struct cgroup_subsys *ss,
- struct cgroup *cgrp,
struct cgroup *old_cgrp,
+ struct cgroup *cgrp,
struct task_struct *p)
{
struct memrlimit_cgroup *memrcg, *old_memrcg;
@@ -246,7 +252,12 @@ static void memrlimit_cgroup_mm_owner_ch
memrcg = memrlimit_cgroup_from_cgrp(cgrp);
old_memrcg = memrlimit_cgroup_from_cgrp(old_cgrp);
- if (res_counter_charge(&memrcg->as_res, (mm->total_vm << PAGE_SHIFT)))
+ /*
+ * If we don't have a new cgroup, we just uncharge from the old one.
+ * It means that the task is going away
+ */
+ if (memrcg &&
+ res_counter_charge(&memrcg->as_res, (mm->total_vm << PAGE_SHIFT)))
goto out;
res_counter_uncharge(&old_memrcg->as_res, (mm->total_vm << PAGE_SHIFT));
out:
_
--
Warm Regards,
Balbir Singh
Linux Technology Center
IBM, ISTL
--
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-08-11 10:08 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-11 10:07 [-mm][PATCH 0/2] Memory rlimit fix crash on fork Balbir Singh
2008-08-11 10:07 ` Balbir Singh
2008-08-11 10:07 ` [-mm][PATCH 1/2] mm owner fix race between swap and exit Balbir Singh
2008-08-11 10:07 ` Balbir Singh
2008-08-12 0:31 ` Andrew Morton
2008-08-12 0:31 ` Andrew Morton
2008-08-12 0:43 ` Paul Menage
2008-08-12 0:43 ` Paul Menage
2008-08-12 4:06 ` Balbir Singh
2008-08-12 4:06 ` Balbir Singh
2008-08-12 4:56 ` Andrew Morton
2008-08-12 4:56 ` Andrew Morton
2008-08-12 5:04 ` Balbir Singh
2008-08-12 5:04 ` Balbir Singh
2008-08-11 10:07 ` Balbir Singh [this message]
2008-08-11 10:07 ` [-mm][PATCH 2/2] Memory rlimit enhance mm_owner_changed callback to deal with exited owner Balbir Singh
2008-08-12 0:39 ` Paul Menage
2008-08-12 0:39 ` Paul Menage
2008-08-13 0:14 ` [-mm][PATCH 0/2] Memory rlimit fix crash on fork Andrew Morton
2008-08-13 0:14 ` Andrew Morton
2008-08-13 1:24 ` Balbir Singh
2008-08-13 1:24 ` Balbir Singh
2008-08-13 2:07 ` Balbir Singh
2008-08-13 2:07 ` Balbir Singh
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=20080811100743.26336.6497.sendpatchset@balbir-laptop \
--to=balbir@linux.vnet.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=hugh@veritas.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lizf@cn.fujitsu.com \
--cc=menage@google.com \
--cc=nishimura@mxp.nes.nec.co.jp \
--cc=skumar@linux.vnet.ibm.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.