From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: "akpm@linux-foundation.org" <akpm@linux-foundation.org>
Cc: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>,
Li Zefan <lizf@cn.fujitsu.com>,
Balbir Singh <balbir@linux.vnet.ibm.com>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
"hugh@veritas.com" <hugh@veritas.com>
Subject: [BUGFIX] [PATCH] memcg: fix refcnt handling at swapoff
Date: Fri, 16 Jan 2009 18:23:51 +0900 [thread overview]
Message-ID: <20090116182351.42c3ff7e.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <20090116181235.320d372b.kamezawa.hiroyu@jp.fujitsu.com>
On Fri, 16 Jan 2009 18:12:35 +0900
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
> How-to-reproduce.
>
> In shell-A
> #mount -t cgroup none /opt/cgroup
> #mkdir /opt/cgroup/xxx/
> #echo 0 > /opt/cgroup/xxx/tasks
> #Run malloc 100M on this and sleep. ---(*)
>
> In shell-B.
> #echo 40M > /opt/cgroup/xxx/memory.limit_in_bytes.
> Then, you'll see 60M of swap.
> #/sbin/swapoff -a
> Then, you'll see OOM-Kill against (*)
> #echo shell-A > /opt/cgroup/tasks
> make /opt/cgroup/xxx/ empty
> #rmdir /opt/cgroup/xxx
>
> => panics.
>
I'll update how-to-test text under Documentation/ later.
-Kame
==
From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Now, at swapoff, even while try_charge() fails, commit is executed.
This is bug and make refcnt of cgroup_subsys_state minus, finally.
Reported-by: Li Zefan <lizf@cn.fujitsu.com>
Tested-by: Li Zefan <lizf@cn.fujitsu.com>
Tested-by: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Reviewed-by: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
---
mm/swapfile.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
Index: mmotm-2.6.29-Jan14/mm/swapfile.c
===================================================================
--- mmotm-2.6.29-Jan14.orig/mm/swapfile.c
+++ mmotm-2.6.29-Jan14/mm/swapfile.c
@@ -698,8 +698,10 @@ static int unuse_pte(struct vm_area_stru
pte_t *pte;
int ret = 1;
- if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr))
+ if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr)) {
ret = -ENOMEM;
+ goto out_nolock;
+ }
pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
@@ -723,6 +725,7 @@ static int unuse_pte(struct vm_area_stru
activate_page(page);
out:
pte_unmap_unlock(pte, ptl);
+out_nolock:
return ret;
}
--
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:[~2009-01-16 9:24 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-16 6:15 [BUG] memcg: panic when rmdir() Li Zefan
2009-01-16 6:19 ` KAMEZAWA Hiroyuki
2009-01-16 6:24 ` Li Zefan
2009-01-16 6:30 ` KAMEZAWA Hiroyuki
2009-01-16 7:00 ` Li Zefan
2009-01-16 6:29 ` KAMEZAWA Hiroyuki
2009-01-16 6:58 ` Daisuke Nishimura
2009-01-16 8:07 ` KAMEZAWA Hiroyuki
2009-01-16 8:26 ` Daisuke Nishimura
2009-01-16 9:12 ` KAMEZAWA Hiroyuki
2009-01-16 9:23 ` KAMEZAWA Hiroyuki [this message]
2009-01-16 9:13 ` Daisuke Nishimura
2009-01-16 9:16 ` KAMEZAWA Hiroyuki
2009-01-16 8:33 ` Li Zefan
2009-01-16 8:40 ` 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=20090116182351.42c3ff7e.kamezawa.hiroyu@jp.fujitsu.com \
--to=kamezawa.hiroyu@jp.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=balbir@linux.vnet.ibm.com \
--cc=hugh@veritas.com \
--cc=linux-mm@kvack.org \
--cc=lizf@cn.fujitsu.com \
--cc=nishimura@mxp.nes.nec.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