From: Johannes Weiner <hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org> To: Michal Hocko <mhocko-AlSwsSmVLrQ@public.gmane.org> Cc: azurIt <azurit-Rm0zKEqwvD4@public.gmane.org>, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-mm-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org, cgroups mailinglist <cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>, KAMEZAWA Hiroyuki <kamezawa.hiroyu-+CUm20s59erQFUHtdCDX3A@public.gmane.org>, righi.andrea-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org Subject: [patch 5/5] mm: memcontrol: sanity check memcg OOM context unwind Date: Fri, 19 Jul 2013 00:26:23 -0400 [thread overview] Message-ID: <20130719042623.GH17812@cmpxchg.org> (raw) In-Reply-To: <20130719042124.GC17812-druUgvl0LCNAfugRpC6u6w@public.gmane.org> Catch the cases where a memcg OOM context is set up in the failed charge path but the fault handler is not actually returning VM_FAULT_ERROR, which would be required to properly finalize the OOM. Example output: the first trace shows the stack at the end of handle_mm_fault() where an unexpected memcg OOM context is detected. The subsequent trace is of whoever set up that OOM context. In this case it was the charging of readahead pages in a file fault, which does not propagate VM_FAULT_OOM on failure and should disable OOM: [ 27.805359] WARNING: at /home/hannes/src/linux/linux/mm/memory.c:3523 handle_mm_fault+0x1fb/0x3f0() [ 27.805360] Hardware name: PowerEdge 1950 [ 27.805361] Fixing unhandled memcg OOM context, set up from: [ 27.805362] Pid: 1599, comm: file Tainted: G W 3.2.0-00005-g6d10010 #97 [ 27.805363] Call Trace: [ 27.805365] [<ffffffff8103dcea>] warn_slowpath_common+0x6a/0xa0 [ 27.805367] [<ffffffff8103dd91>] warn_slowpath_fmt+0x41/0x50 [ 27.805369] [<ffffffff810c8ffb>] handle_mm_fault+0x1fb/0x3f0 [ 27.805371] [<ffffffff81024fa0>] do_page_fault+0x140/0x4a0 [ 27.805373] [<ffffffff810cdbfb>] ? do_mmap_pgoff+0x34b/0x360 [ 27.805376] [<ffffffff813cbc6f>] page_fault+0x1f/0x30 [ 27.805377] ---[ end trace 305ec584fba81649 ]--- [ 27.805378] [<ffffffff810f2418>] __mem_cgroup_try_charge+0x5c8/0x7e0 [ 27.805380] [<ffffffff810f38fc>] mem_cgroup_cache_charge+0xac/0x110 [ 27.805381] [<ffffffff810a528e>] add_to_page_cache_locked+0x3e/0x120 [ 27.805383] [<ffffffff810a5385>] add_to_page_cache_lru+0x15/0x40 [ 27.805385] [<ffffffff8112dfa3>] mpage_readpages+0xc3/0x150 [ 27.805387] [<ffffffff8115c6d8>] ext4_readpages+0x18/0x20 [ 27.805388] [<ffffffff810afbe1>] __do_page_cache_readahead+0x1c1/0x270 [ 27.805390] [<ffffffff810b023c>] ra_submit+0x1c/0x20 [ 27.805392] [<ffffffff810a5eb4>] filemap_fault+0x3f4/0x450 [ 27.805394] [<ffffffff810c4a2d>] __do_fault+0x6d/0x510 [ 27.805395] [<ffffffff810c741a>] handle_pte_fault+0x8a/0x920 [ 27.805397] [<ffffffff810c8f9c>] handle_mm_fault+0x19c/0x3f0 [ 27.805398] [<ffffffff81024fa0>] do_page_fault+0x140/0x4a0 [ 27.805400] [<ffffffff813cbc6f>] page_fault+0x1f/0x30 [ 27.805401] [<ffffffffffffffff>] 0xffffffffffffffff Debug patch only. Not-signed-off-by: Johannes Weiner <hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org> --- include/linux/sched.h | 3 +++ mm/memcontrol.c | 7 +++++++ mm/memory.c | 9 +++++++++ 3 files changed, 19 insertions(+) diff --git a/include/linux/sched.h b/include/linux/sched.h index 7e6c9e9..a77d198 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -91,6 +91,7 @@ struct sched_param { #include <linux/latencytop.h> #include <linux/cred.h> #include <linux/llist.h> +#include <linux/stacktrace.h> #include <asm/processor.h> @@ -1571,6 +1572,8 @@ struct task_struct { struct memcg_oom_info { unsigned int may_oom:1; unsigned int in_memcg_oom:1; + struct stack_trace trace; + unsigned long trace_entries[16]; int wakeups; struct mem_cgroup *wait_on_memcg; } memcg_oom; diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 99b0101..c47c77e 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -49,6 +49,7 @@ #include <linux/page_cgroup.h> #include <linux/cpu.h> #include <linux/oom.h> +#include <linux/stacktrace.h> #include "internal.h" #include <asm/uaccess.h> @@ -1870,6 +1871,12 @@ static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask) current->memcg_oom.in_memcg_oom = 1; + current->memcg_oom.trace.nr_entries = 0; + current->memcg_oom.trace.max_entries = 16; + current->memcg_oom.trace.entries = current->memcg_oom.trace_entries; + current->memcg_oom.trace.skip = 1; + save_stack_trace(¤t->memcg_oom.trace); + /* At first, try to OOM lock hierarchy under memcg.*/ spin_lock(&memcg_oom_lock); locked = mem_cgroup_oom_lock(memcg); diff --git a/mm/memory.c b/mm/memory.c index 2be02b7..fc6d741 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -57,6 +57,7 @@ #include <linux/swapops.h> #include <linux/elf.h> #include <linux/gfp.h> +#include <linux/stacktrace.h> #include <asm/io.h> #include <asm/pgalloc.h> @@ -3517,6 +3518,14 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, if (userfault) WARN_ON(mem_cgroup_xchg_may_oom(current, 0) == 0); +#ifdef CONFIG_CGROUP_MEM_RES_CTLR + if (WARN(!(ret & VM_FAULT_OOM) && current->memcg_oom.in_memcg_oom, + "Fixing unhandled memcg OOM context, set up from:\n")) { + print_stack_trace(¤t->memcg_oom.trace, 0); + mem_cgroup_oom_synchronize(); + } +#endif + return ret; } -- 1.8.3.2
WARNING: multiple messages have this Message-ID (diff)
From: Johannes Weiner <hannes@cmpxchg.org> To: Michal Hocko <mhocko@suse.cz> Cc: azurIt <azurit@pobox.sk>, linux-kernel@vger.kernel.org, linux-mm@kvack.org, cgroups mailinglist <cgroups@vger.kernel.org>, KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>, righi.andrea@gmail.com Subject: [patch 5/5] mm: memcontrol: sanity check memcg OOM context unwind Date: Fri, 19 Jul 2013 00:26:23 -0400 [thread overview] Message-ID: <20130719042623.GH17812@cmpxchg.org> (raw) In-Reply-To: <20130719042124.GC17812@cmpxchg.org> Catch the cases where a memcg OOM context is set up in the failed charge path but the fault handler is not actually returning VM_FAULT_ERROR, which would be required to properly finalize the OOM. Example output: the first trace shows the stack at the end of handle_mm_fault() where an unexpected memcg OOM context is detected. The subsequent trace is of whoever set up that OOM context. In this case it was the charging of readahead pages in a file fault, which does not propagate VM_FAULT_OOM on failure and should disable OOM: [ 27.805359] WARNING: at /home/hannes/src/linux/linux/mm/memory.c:3523 handle_mm_fault+0x1fb/0x3f0() [ 27.805360] Hardware name: PowerEdge 1950 [ 27.805361] Fixing unhandled memcg OOM context, set up from: [ 27.805362] Pid: 1599, comm: file Tainted: G W 3.2.0-00005-g6d10010 #97 [ 27.805363] Call Trace: [ 27.805365] [<ffffffff8103dcea>] warn_slowpath_common+0x6a/0xa0 [ 27.805367] [<ffffffff8103dd91>] warn_slowpath_fmt+0x41/0x50 [ 27.805369] [<ffffffff810c8ffb>] handle_mm_fault+0x1fb/0x3f0 [ 27.805371] [<ffffffff81024fa0>] do_page_fault+0x140/0x4a0 [ 27.805373] [<ffffffff810cdbfb>] ? do_mmap_pgoff+0x34b/0x360 [ 27.805376] [<ffffffff813cbc6f>] page_fault+0x1f/0x30 [ 27.805377] ---[ end trace 305ec584fba81649 ]--- [ 27.805378] [<ffffffff810f2418>] __mem_cgroup_try_charge+0x5c8/0x7e0 [ 27.805380] [<ffffffff810f38fc>] mem_cgroup_cache_charge+0xac/0x110 [ 27.805381] [<ffffffff810a528e>] add_to_page_cache_locked+0x3e/0x120 [ 27.805383] [<ffffffff810a5385>] add_to_page_cache_lru+0x15/0x40 [ 27.805385] [<ffffffff8112dfa3>] mpage_readpages+0xc3/0x150 [ 27.805387] [<ffffffff8115c6d8>] ext4_readpages+0x18/0x20 [ 27.805388] [<ffffffff810afbe1>] __do_page_cache_readahead+0x1c1/0x270 [ 27.805390] [<ffffffff810b023c>] ra_submit+0x1c/0x20 [ 27.805392] [<ffffffff810a5eb4>] filemap_fault+0x3f4/0x450 [ 27.805394] [<ffffffff810c4a2d>] __do_fault+0x6d/0x510 [ 27.805395] [<ffffffff810c741a>] handle_pte_fault+0x8a/0x920 [ 27.805397] [<ffffffff810c8f9c>] handle_mm_fault+0x19c/0x3f0 [ 27.805398] [<ffffffff81024fa0>] do_page_fault+0x140/0x4a0 [ 27.805400] [<ffffffff813cbc6f>] page_fault+0x1f/0x30 [ 27.805401] [<ffffffffffffffff>] 0xffffffffffffffff Debug patch only. Not-signed-off-by: Johannes Weiner <hannes@cmpxchg.org> --- include/linux/sched.h | 3 +++ mm/memcontrol.c | 7 +++++++ mm/memory.c | 9 +++++++++ 3 files changed, 19 insertions(+) diff --git a/include/linux/sched.h b/include/linux/sched.h index 7e6c9e9..a77d198 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -91,6 +91,7 @@ struct sched_param { #include <linux/latencytop.h> #include <linux/cred.h> #include <linux/llist.h> +#include <linux/stacktrace.h> #include <asm/processor.h> @@ -1571,6 +1572,8 @@ struct task_struct { struct memcg_oom_info { unsigned int may_oom:1; unsigned int in_memcg_oom:1; + struct stack_trace trace; + unsigned long trace_entries[16]; int wakeups; struct mem_cgroup *wait_on_memcg; } memcg_oom; diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 99b0101..c47c77e 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -49,6 +49,7 @@ #include <linux/page_cgroup.h> #include <linux/cpu.h> #include <linux/oom.h> +#include <linux/stacktrace.h> #include "internal.h" #include <asm/uaccess.h> @@ -1870,6 +1871,12 @@ static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask) current->memcg_oom.in_memcg_oom = 1; + current->memcg_oom.trace.nr_entries = 0; + current->memcg_oom.trace.max_entries = 16; + current->memcg_oom.trace.entries = current->memcg_oom.trace_entries; + current->memcg_oom.trace.skip = 1; + save_stack_trace(¤t->memcg_oom.trace); + /* At first, try to OOM lock hierarchy under memcg.*/ spin_lock(&memcg_oom_lock); locked = mem_cgroup_oom_lock(memcg); diff --git a/mm/memory.c b/mm/memory.c index 2be02b7..fc6d741 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -57,6 +57,7 @@ #include <linux/swapops.h> #include <linux/elf.h> #include <linux/gfp.h> +#include <linux/stacktrace.h> #include <asm/io.h> #include <asm/pgalloc.h> @@ -3517,6 +3518,14 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, if (userfault) WARN_ON(mem_cgroup_xchg_may_oom(current, 0) == 0); +#ifdef CONFIG_CGROUP_MEM_RES_CTLR + if (WARN(!(ret & VM_FAULT_OOM) && current->memcg_oom.in_memcg_oom, + "Fixing unhandled memcg OOM context, set up from:\n")) { + print_stack_trace(¤t->memcg_oom.trace, 0); + mem_cgroup_oom_synchronize(); + } +#endif + return ret; } -- 1.8.3.2 -- 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>
WARNING: multiple messages have this Message-ID (diff)
From: Johannes Weiner <hannes@cmpxchg.org> To: Michal Hocko <mhocko@suse.cz> Cc: azurIt <azurit@pobox.sk>, linux-kernel@vger.kernel.org, linux-mm@kvack.org, cgroups mailinglist <cgroups@vger.kernel.org>, KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>, righi.andrea@gmail.com Subject: [patch 5/5] mm: memcontrol: sanity check memcg OOM context unwind Date: Fri, 19 Jul 2013 00:26:23 -0400 [thread overview] Message-ID: <20130719042623.GH17812@cmpxchg.org> (raw) In-Reply-To: <20130719042124.GC17812@cmpxchg.org> Catch the cases where a memcg OOM context is set up in the failed charge path but the fault handler is not actually returning VM_FAULT_ERROR, which would be required to properly finalize the OOM. Example output: the first trace shows the stack at the end of handle_mm_fault() where an unexpected memcg OOM context is detected. The subsequent trace is of whoever set up that OOM context. In this case it was the charging of readahead pages in a file fault, which does not propagate VM_FAULT_OOM on failure and should disable OOM: [ 27.805359] WARNING: at /home/hannes/src/linux/linux/mm/memory.c:3523 handle_mm_fault+0x1fb/0x3f0() [ 27.805360] Hardware name: PowerEdge 1950 [ 27.805361] Fixing unhandled memcg OOM context, set up from: [ 27.805362] Pid: 1599, comm: file Tainted: G W 3.2.0-00005-g6d10010 #97 [ 27.805363] Call Trace: [ 27.805365] [<ffffffff8103dcea>] warn_slowpath_common+0x6a/0xa0 [ 27.805367] [<ffffffff8103dd91>] warn_slowpath_fmt+0x41/0x50 [ 27.805369] [<ffffffff810c8ffb>] handle_mm_fault+0x1fb/0x3f0 [ 27.805371] [<ffffffff81024fa0>] do_page_fault+0x140/0x4a0 [ 27.805373] [<ffffffff810cdbfb>] ? do_mmap_pgoff+0x34b/0x360 [ 27.805376] [<ffffffff813cbc6f>] page_fault+0x1f/0x30 [ 27.805377] ---[ end trace 305ec584fba81649 ]--- [ 27.805378] [<ffffffff810f2418>] __mem_cgroup_try_charge+0x5c8/0x7e0 [ 27.805380] [<ffffffff810f38fc>] mem_cgroup_cache_charge+0xac/0x110 [ 27.805381] [<ffffffff810a528e>] add_to_page_cache_locked+0x3e/0x120 [ 27.805383] [<ffffffff810a5385>] add_to_page_cache_lru+0x15/0x40 [ 27.805385] [<ffffffff8112dfa3>] mpage_readpages+0xc3/0x150 [ 27.805387] [<ffffffff8115c6d8>] ext4_readpages+0x18/0x20 [ 27.805388] [<ffffffff810afbe1>] __do_page_cache_readahead+0x1c1/0x270 [ 27.805390] [<ffffffff810b023c>] ra_submit+0x1c/0x20 [ 27.805392] [<ffffffff810a5eb4>] filemap_fault+0x3f4/0x450 [ 27.805394] [<ffffffff810c4a2d>] __do_fault+0x6d/0x510 [ 27.805395] [<ffffffff810c741a>] handle_pte_fault+0x8a/0x920 [ 27.805397] [<ffffffff810c8f9c>] handle_mm_fault+0x19c/0x3f0 [ 27.805398] [<ffffffff81024fa0>] do_page_fault+0x140/0x4a0 [ 27.805400] [<ffffffff813cbc6f>] page_fault+0x1f/0x30 [ 27.805401] [<ffffffffffffffff>] 0xffffffffffffffff Debug patch only. Not-signed-off-by: Johannes Weiner <hannes@cmpxchg.org> --- include/linux/sched.h | 3 +++ mm/memcontrol.c | 7 +++++++ mm/memory.c | 9 +++++++++ 3 files changed, 19 insertions(+) diff --git a/include/linux/sched.h b/include/linux/sched.h index 7e6c9e9..a77d198 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -91,6 +91,7 @@ struct sched_param { #include <linux/latencytop.h> #include <linux/cred.h> #include <linux/llist.h> +#include <linux/stacktrace.h> #include <asm/processor.h> @@ -1571,6 +1572,8 @@ struct task_struct { struct memcg_oom_info { unsigned int may_oom:1; unsigned int in_memcg_oom:1; + struct stack_trace trace; + unsigned long trace_entries[16]; int wakeups; struct mem_cgroup *wait_on_memcg; } memcg_oom; diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 99b0101..c47c77e 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -49,6 +49,7 @@ #include <linux/page_cgroup.h> #include <linux/cpu.h> #include <linux/oom.h> +#include <linux/stacktrace.h> #include "internal.h" #include <asm/uaccess.h> @@ -1870,6 +1871,12 @@ static void mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask) current->memcg_oom.in_memcg_oom = 1; + current->memcg_oom.trace.nr_entries = 0; + current->memcg_oom.trace.max_entries = 16; + current->memcg_oom.trace.entries = current->memcg_oom.trace_entries; + current->memcg_oom.trace.skip = 1; + save_stack_trace(¤t->memcg_oom.trace); + /* At first, try to OOM lock hierarchy under memcg.*/ spin_lock(&memcg_oom_lock); locked = mem_cgroup_oom_lock(memcg); diff --git a/mm/memory.c b/mm/memory.c index 2be02b7..fc6d741 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -57,6 +57,7 @@ #include <linux/swapops.h> #include <linux/elf.h> #include <linux/gfp.h> +#include <linux/stacktrace.h> #include <asm/io.h> #include <asm/pgalloc.h> @@ -3517,6 +3518,14 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, if (userfault) WARN_ON(mem_cgroup_xchg_may_oom(current, 0) == 0); +#ifdef CONFIG_CGROUP_MEM_RES_CTLR + if (WARN(!(ret & VM_FAULT_OOM) && current->memcg_oom.in_memcg_oom, + "Fixing unhandled memcg OOM context, set up from:\n")) { + print_stack_trace(¤t->memcg_oom.trace, 0); + mem_cgroup_oom_synchronize(); + } +#endif + return ret; } -- 1.8.3.2
next prev parent reply other threads:[~2013-07-19 4:26 UTC|newest]
Thread overview: 444+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-21 19:02 memory-cgroup bug azurIt
2012-11-22 0:26 ` Kamezawa Hiroyuki
2012-11-22 0:26 ` Kamezawa Hiroyuki
2012-11-22 9:36 ` azurIt
2012-11-22 9:36 ` azurIt
2012-11-22 21:45 ` Michal Hocko
2012-11-22 21:45 ` Michal Hocko
2012-11-22 15:24 ` Michal Hocko
2012-11-22 15:24 ` Michal Hocko
2012-11-22 18:05 ` azurIt
2012-11-22 18:05 ` azurIt
2012-11-22 21:42 ` Michal Hocko
2012-11-22 21:42 ` Michal Hocko
2012-11-22 22:34 ` azurIt
2012-11-22 22:34 ` azurIt
[not found] ` <20121122233434.3D5E35E6-Rm0zKEqwvD4@public.gmane.org>
2012-11-23 7:40 ` Michal Hocko
2012-11-23 7:40 ` Michal Hocko
2012-11-23 7:40 ` Michal Hocko
[not found] ` <20121123074023.GA24698-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-23 9:21 ` azurIt
2012-11-23 9:21 ` azurIt
2012-11-23 9:21 ` azurIt
2012-11-23 9:28 ` Michal Hocko
2012-11-23 9:28 ` Michal Hocko
[not found] ` <20121123092829.GE24698-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-23 9:44 ` azurIt
2012-11-23 9:44 ` azurIt
2012-11-23 9:44 ` azurIt
[not found] ` <20121123104423.338C7725-Rm0zKEqwvD4@public.gmane.org>
2012-11-23 10:10 ` Michal Hocko
2012-11-23 10:10 ` Michal Hocko
2012-11-23 10:10 ` Michal Hocko
2012-11-23 9:34 ` Glauber Costa
2012-11-23 9:34 ` Glauber Costa
2012-11-23 10:04 ` Michal Hocko
2012-11-23 10:04 ` Michal Hocko
[not found] ` <20121123100438.GF24698-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-23 14:59 ` azurIt
2012-11-23 14:59 ` azurIt
2012-11-23 14:59 ` azurIt
[not found] ` <20121123155904.490039C5-Rm0zKEqwvD4@public.gmane.org>
2012-11-25 10:17 ` Michal Hocko
2012-11-25 10:17 ` Michal Hocko
2012-11-25 10:17 ` Michal Hocko
2012-11-25 12:39 ` azurIt
2012-11-25 12:39 ` azurIt
[not found] ` <20121125133953.AD1B2F0A-Rm0zKEqwvD4@public.gmane.org>
2012-11-25 13:02 ` Michal Hocko
2012-11-25 13:02 ` Michal Hocko
2012-11-25 13:02 ` Michal Hocko
[not found] ` <20121125130208.GC10623-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-25 13:27 ` azurIt
2012-11-25 13:27 ` azurIt
2012-11-25 13:27 ` azurIt
[not found] ` <20121125142709.19F4E8C2-Rm0zKEqwvD4@public.gmane.org>
2012-11-25 13:44 ` Michal Hocko
2012-11-25 13:44 ` Michal Hocko
2012-11-25 13:44 ` Michal Hocko
2012-11-25 0:10 ` azurIt
2012-11-25 0:10 ` azurIt
2012-11-25 0:10 ` azurIt
2012-11-25 12:05 ` Michal Hocko
2012-11-25 12:05 ` Michal Hocko
2012-11-25 12:36 ` azurIt
2012-11-25 12:36 ` azurIt
2012-11-25 13:55 ` Michal Hocko
2012-11-25 13:55 ` Michal Hocko
2012-11-26 0:38 ` azurIt
2012-11-26 0:38 ` azurIt
[not found] ` <20121126013855.AF118F5E-Rm0zKEqwvD4@public.gmane.org>
2012-11-26 7:57 ` Michal Hocko
2012-11-26 7:57 ` Michal Hocko
2012-11-26 7:57 ` Michal Hocko
2012-11-26 13:18 ` [PATCH -mm] memcg: do not trigger OOM from add_to_page_cache_locked Michal Hocko
2012-11-26 13:18 ` Michal Hocko
2012-11-26 13:18 ` Michal Hocko
[not found] ` <20121126131837.GC17860-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-26 13:21 ` [PATCH for 3.2.34] " Michal Hocko
2012-11-26 13:21 ` Michal Hocko
2012-11-26 13:21 ` Michal Hocko
2012-11-26 21:28 ` azurIt
2012-11-26 21:28 ` azurIt
[not found] ` <20121126132149.GD17860-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-30 1:45 ` azurIt
2012-11-30 1:45 ` azurIt
2012-11-30 1:45 ` azurIt
2012-11-30 2:29 ` azurIt
2012-11-30 2:29 ` azurIt
[not found] ` <20121130032918.59B3F780-Rm0zKEqwvD4@public.gmane.org>
2012-11-30 12:45 ` Michal Hocko
2012-11-30 12:45 ` Michal Hocko
2012-11-30 12:45 ` Michal Hocko
[not found] ` <20121130124506.GH29317-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-30 12:53 ` azurIt
2012-11-30 12:53 ` azurIt
2012-11-30 12:53 ` azurIt
2012-11-30 13:44 ` azurIt
2012-11-30 13:44 ` azurIt
[not found] ` <20121130144427.51A09169-Rm0zKEqwvD4@public.gmane.org>
2012-11-30 14:44 ` Michal Hocko
2012-11-30 14:44 ` Michal Hocko
2012-11-30 14:44 ` Michal Hocko
[not found] ` <20121130144431.GI29317-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-30 15:03 ` Michal Hocko
2012-11-30 15:03 ` Michal Hocko
2012-11-30 15:03 ` Michal Hocko
2012-11-30 15:37 ` Michal Hocko
2012-11-30 15:37 ` Michal Hocko
2012-11-30 15:08 ` azurIt
2012-11-30 15:08 ` azurIt
2012-11-30 15:39 ` Michal Hocko
2012-11-30 15:39 ` Michal Hocko
[not found] ` <20121130153942.GL29317-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-30 15:59 ` azurIt
2012-11-30 15:59 ` azurIt
2012-11-30 15:59 ` azurIt
2012-11-30 16:19 ` Michal Hocko
2012-11-30 16:19 ` Michal Hocko
2012-11-30 16:26 ` azurIt
2012-11-30 16:26 ` azurIt
[not found] ` <20121130172651.B6917602-Rm0zKEqwvD4@public.gmane.org>
2012-11-30 16:53 ` Michal Hocko
2012-11-30 16:53 ` Michal Hocko
2012-11-30 16:53 ` Michal Hocko
2012-11-30 20:43 ` azurIt
2012-11-30 20:43 ` azurIt
2012-12-03 15:16 ` Michal Hocko
2012-12-03 15:16 ` Michal Hocko
[not found] ` <20121203151601.GA17093-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-05 1:36 ` azurIt
2012-12-05 1:36 ` azurIt
2012-12-05 1:36 ` azurIt
[not found] ` <20121205023644.18C3006B-Rm0zKEqwvD4@public.gmane.org>
2012-12-05 14:17 ` Michal Hocko
2012-12-05 14:17 ` Michal Hocko
2012-12-05 14:17 ` Michal Hocko
[not found] ` <20121205141722.GA9714-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-06 0:29 ` azurIt
2012-12-06 0:29 ` azurIt
2012-12-06 0:29 ` azurIt
[not found] ` <20121206012924.FE077FD7-Rm0zKEqwvD4@public.gmane.org>
2012-12-06 9:54 ` Michal Hocko
2012-12-06 9:54 ` Michal Hocko
2012-12-06 9:54 ` Michal Hocko
2012-12-06 10:12 ` azurIt
2012-12-06 10:12 ` azurIt
2012-12-06 17:06 ` Michal Hocko
2012-12-06 17:06 ` Michal Hocko
[not found] ` <20121206095423.GB10931-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-10 1:20 ` azurIt
2012-12-10 1:20 ` azurIt
2012-12-10 1:20 ` azurIt
[not found] ` <20121210022038.E6570D37-Rm0zKEqwvD4@public.gmane.org>
2012-12-10 9:43 ` Michal Hocko
2012-12-10 9:43 ` Michal Hocko
2012-12-10 9:43 ` Michal Hocko
[not found] ` <20121210094318.GA6777-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-10 10:18 ` azurIt
2012-12-10 10:18 ` azurIt
2012-12-10 10:18 ` azurIt
[not found] ` <20121210111817.F697F53E-Rm0zKEqwvD4@public.gmane.org>
2012-12-10 15:52 ` Michal Hocko
2012-12-10 15:52 ` Michal Hocko
2012-12-10 15:52 ` Michal Hocko
2012-12-10 17:18 ` azurIt
2012-12-10 17:18 ` azurIt
2012-12-17 1:34 ` azurIt
2012-12-17 1:34 ` azurIt
2012-12-17 16:32 ` Michal Hocko
2012-12-17 16:32 ` Michal Hocko
2012-12-17 18:23 ` azurIt
2012-12-17 18:23 ` azurIt
[not found] ` <20121217192301.829A7020-Rm0zKEqwvD4@public.gmane.org>
2012-12-17 19:55 ` Michal Hocko
2012-12-17 19:55 ` Michal Hocko
2012-12-17 19:55 ` Michal Hocko
[not found] ` <20121217195510.GA16375-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-18 14:22 ` azurIt
2012-12-18 14:22 ` azurIt
2012-12-18 14:22 ` azurIt
2012-12-18 15:20 ` Michal Hocko
2012-12-18 15:20 ` Michal Hocko
[not found] ` <20121218152004.GA25208-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-24 13:25 ` azurIt
2012-12-24 13:25 ` azurIt
2012-12-24 13:25 ` azurIt
[not found] ` <20121224142526.020165D3-Rm0zKEqwvD4@public.gmane.org>
2012-12-28 16:22 ` Michal Hocko
2012-12-28 16:22 ` Michal Hocko
2012-12-28 16:22 ` Michal Hocko
[not found] ` <20121228162209.GA1455-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-12-30 1:09 ` azurIt
2012-12-30 1:09 ` azurIt
2012-12-30 1:09 ` azurIt
2012-12-30 11:08 ` Michal Hocko
2012-12-30 11:08 ` Michal Hocko
[not found] ` <20121230110815.GA12940-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-01-25 15:07 ` azurIt
2013-01-25 15:07 ` azurIt
2013-01-25 15:07 ` azurIt
2013-01-25 16:31 ` Michal Hocko
2013-01-25 16:31 ` Michal Hocko
2013-01-25 16:31 ` Michal Hocko
[not found] ` <20130125163130.GF4721-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-02-05 13:49 ` Michal Hocko
2013-02-05 13:49 ` Michal Hocko
2013-02-05 13:49 ` Michal Hocko
2013-02-05 14:49 ` azurIt
2013-02-05 14:49 ` azurIt
2013-02-05 16:09 ` Michal Hocko
2013-02-05 16:09 ` Michal Hocko
2013-02-05 16:09 ` Michal Hocko
2013-02-05 16:46 ` azurIt
2013-02-05 16:46 ` azurIt
2013-02-05 16:48 ` Greg Thelen
2013-02-05 16:48 ` Greg Thelen
2013-02-05 17:46 ` Michal Hocko
2013-02-05 17:46 ` Michal Hocko
2013-02-05 18:09 ` Greg Thelen
2013-02-05 18:09 ` Greg Thelen
[not found] ` <xr93a9ri4op6.fsf-aSPv4SP+Du0KgorLzL7FmE7CuiCeIGUxQQ4Iyu8u01E@public.gmane.org>
2013-02-05 18:59 ` Michal Hocko
2013-02-05 18:59 ` Michal Hocko
2013-02-05 18:59 ` Michal Hocko
2013-02-08 4:27 ` Greg Thelen
2013-02-08 4:27 ` Greg Thelen
[not found] ` <xr93ip63ig6j.fsf-aSPv4SP+Du0KgorLzL7FmE7CuiCeIGUxQQ4Iyu8u01E@public.gmane.org>
2013-02-08 16:29 ` Michal Hocko
2013-02-08 16:29 ` Michal Hocko
2013-02-08 16:29 ` Michal Hocko
2013-02-08 16:40 ` Michal Hocko
2013-02-08 16:40 ` Michal Hocko
2013-02-06 1:17 ` azurIt
2013-02-06 1:17 ` azurIt
[not found] ` <20130206021721.1AE9E3C7-Rm0zKEqwvD4@public.gmane.org>
2013-02-06 14:01 ` Michal Hocko
2013-02-06 14:01 ` Michal Hocko
2013-02-06 14:01 ` Michal Hocko
[not found] ` <20130206140119.GD10254-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-02-06 14:22 ` Michal Hocko
2013-02-06 14:22 ` Michal Hocko
2013-02-06 14:22 ` Michal Hocko
[not found] ` <20130206142219.GF10254-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-02-06 16:00 ` [PATCH for 3.2.34] memcg: do not trigger OOM if PF_NO_MEMCG_OOM is set Michal Hocko
2013-02-06 16:00 ` Michal Hocko
2013-02-06 16:00 ` Michal Hocko
2013-02-08 5:03 ` azurIt
2013-02-08 5:03 ` azurIt
2013-02-08 5:03 ` azurIt
2013-02-08 9:44 ` Michal Hocko
2013-02-08 9:44 ` Michal Hocko
2013-02-08 11:02 ` azurIt
2013-02-08 11:02 ` azurIt
[not found] ` <20130208120249.FD733220-Rm0zKEqwvD4@public.gmane.org>
2013-02-08 12:38 ` Michal Hocko
2013-02-08 12:38 ` Michal Hocko
2013-02-08 12:38 ` Michal Hocko
2013-02-08 13:56 ` azurIt
2013-02-08 13:56 ` azurIt
[not found] ` <20130208145616.FB78CE24-Rm0zKEqwvD4@public.gmane.org>
2013-02-08 14:47 ` Michal Hocko
2013-02-08 14:47 ` Michal Hocko
2013-02-08 14:47 ` Michal Hocko
2013-02-08 15:24 ` Michal Hocko
2013-02-08 15:24 ` Michal Hocko
2013-02-08 15:24 ` Michal Hocko
[not found] ` <20130208152402.GD7557-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-02-08 15:58 ` azurIt
2013-02-08 15:58 ` azurIt
2013-02-08 15:58 ` azurIt
[not found] ` <20130208165805.8908B143-Rm0zKEqwvD4@public.gmane.org>
2013-02-08 17:10 ` Michal Hocko
2013-02-08 17:10 ` Michal Hocko
2013-02-08 17:10 ` Michal Hocko
2013-02-08 21:02 ` azurIt
2013-02-08 21:02 ` azurIt
[not found] ` <20130208220243.EDEE0825-Rm0zKEqwvD4@public.gmane.org>
2013-02-10 15:03 ` Michal Hocko
2013-02-10 15:03 ` Michal Hocko
2013-02-10 15:03 ` Michal Hocko
[not found] ` <20130210150310.GA9504-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-02-10 16:46 ` azurIt
2013-02-10 16:46 ` azurIt
2013-02-10 16:46 ` azurIt
2013-02-11 11:22 ` Michal Hocko
2013-02-11 11:22 ` Michal Hocko
2013-02-11 11:22 ` Michal Hocko
[not found] ` <20130211112240.GC19922-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-02-22 8:23 ` azurIt
2013-02-22 8:23 ` azurIt
2013-02-22 8:23 ` azurIt
[not found] ` <20130222092332.4001E4B6-Rm0zKEqwvD4@public.gmane.org>
2013-02-22 12:52 ` Michal Hocko
2013-02-22 12:52 ` Michal Hocko
2013-02-22 12:52 ` Michal Hocko
2013-02-22 12:54 ` azurIt
2013-02-22 12:54 ` azurIt
[not found] ` <20130222135442.ADFFF498-Rm0zKEqwvD4@public.gmane.org>
2013-02-22 13:00 ` Michal Hocko
2013-02-22 13:00 ` Michal Hocko
2013-02-22 13:00 ` Michal Hocko
2013-06-06 16:04 ` Michal Hocko
2013-06-06 16:04 ` Michal Hocko
2013-06-06 16:04 ` Michal Hocko
2013-06-06 16:16 ` azurIt
2013-06-06 16:16 ` azurIt
2013-06-06 16:16 ` azurIt
2013-06-07 13:11 ` [PATCH for 3.2] memcg: do not trap chargers with full callstack on OOM Michal Hocko
2013-06-07 13:11 ` Michal Hocko
2013-06-07 13:11 ` Michal Hocko
2013-06-17 10:21 ` azurIt
2013-06-17 10:21 ` azurIt
2013-06-19 13:26 ` Michal Hocko
2013-06-19 13:26 ` Michal Hocko
2013-06-22 20:09 ` azurIt
2013-06-22 20:09 ` azurIt
[not found] ` <20130622220958.D10567A4-Rm0zKEqwvD4@public.gmane.org>
2013-06-24 20:13 ` Johannes Weiner
2013-06-24 20:13 ` Johannes Weiner
2013-06-24 20:13 ` Johannes Weiner
[not found] ` <20130624201345.GA21822-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2013-06-28 10:06 ` azurIt
2013-06-28 10:06 ` azurIt
2013-06-28 10:06 ` azurIt
[not found] ` <20130628120613.6D6CAD21-Rm0zKEqwvD4@public.gmane.org>
2013-07-05 18:17 ` Johannes Weiner
2013-07-05 18:17 ` Johannes Weiner
2013-07-05 18:17 ` Johannes Weiner
2013-07-05 19:02 ` azurIt
2013-07-05 19:02 ` azurIt
[not found] ` <20130705210246.11D2135A-Rm0zKEqwvD4@public.gmane.org>
2013-07-05 19:18 ` Johannes Weiner
2013-07-05 19:18 ` Johannes Weiner
2013-07-05 19:18 ` Johannes Weiner
2013-07-07 23:42 ` azurIt
2013-07-07 23:42 ` azurIt
2013-07-09 13:10 ` Michal Hocko
2013-07-09 13:10 ` Michal Hocko
2013-07-09 13:19 ` azurIt
2013-07-09 13:19 ` azurIt
[not found] ` <20130709151921.5160C199-Rm0zKEqwvD4@public.gmane.org>
2013-07-09 13:54 ` Michal Hocko
2013-07-09 13:54 ` Michal Hocko
2013-07-09 13:54 ` Michal Hocko
2013-07-10 16:25 ` azurIt
2013-07-10 16:25 ` azurIt
2013-07-11 7:25 ` Michal Hocko
2013-07-11 7:25 ` Michal Hocko
2013-07-11 7:25 ` Michal Hocko
2013-07-13 23:26 ` azurIt
2013-07-13 23:26 ` azurIt
2013-07-13 23:26 ` azurIt
2013-07-13 23:51 ` azurIt
2013-07-13 23:51 ` azurIt
[not found] ` <20130714015112.FFCB7AF7-Rm0zKEqwvD4@public.gmane.org>
2013-07-15 15:41 ` Michal Hocko
2013-07-15 15:41 ` Michal Hocko
2013-07-15 15:41 ` Michal Hocko
[not found] ` <20130715154119.GA32435-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-07-15 16:00 ` Michal Hocko
2013-07-15 16:00 ` Michal Hocko
2013-07-15 16:00 ` Michal Hocko
[not found] ` <20130715160006.GB32435-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-07-16 15:35 ` Johannes Weiner
2013-07-16 15:35 ` Johannes Weiner
2013-07-16 15:35 ` Johannes Weiner
[not found] ` <20130716153544.GX17812-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2013-07-16 16:09 ` Michal Hocko
2013-07-16 16:09 ` Michal Hocko
2013-07-16 16:09 ` Michal Hocko
[not found] ` <20130716160905.GA20018-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-07-16 16:48 ` Johannes Weiner
2013-07-16 16:48 ` Johannes Weiner
2013-07-16 16:48 ` Johannes Weiner
2013-07-19 4:21 ` Johannes Weiner
2013-07-19 4:21 ` Johannes Weiner
2013-07-19 4:25 ` [patch 3/5] x86: finish fault error path with fatal signal Johannes Weiner
2013-07-19 4:25 ` Johannes Weiner
[not found] ` <20130719042502.GF17812-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2013-07-24 20:32 ` Johannes Weiner
2013-07-24 20:32 ` Johannes Weiner
2013-07-24 20:32 ` Johannes Weiner
2013-07-25 20:29 ` KOSAKI Motohiro
2013-07-25 20:29 ` KOSAKI Motohiro
[not found] ` <51F18A99.7000306-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-07-25 21:50 ` Johannes Weiner
2013-07-25 21:50 ` Johannes Weiner
2013-07-25 21:50 ` Johannes Weiner
[not found] ` <20130719042124.GC17812-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2013-07-19 4:22 ` [patch 1/5] mm: invoke oom-killer from remaining unconverted page fault handlers Johannes Weiner
2013-07-19 4:22 ` Johannes Weiner
2013-07-19 4:22 ` Johannes Weiner
2013-07-19 4:24 ` [patch 2/5] mm: pass userspace fault flag to generic fault handler Johannes Weiner
2013-07-19 4:24 ` Johannes Weiner
2013-07-19 4:24 ` Johannes Weiner
2013-07-19 4:25 ` [patch 4/5] memcg: do not trap chargers with full callstack on OOM Johannes Weiner
2013-07-19 4:25 ` Johannes Weiner
2013-07-19 4:25 ` Johannes Weiner
2013-07-19 4:26 ` Johannes Weiner [this message]
2013-07-19 4:26 ` [patch 5/5] mm: memcontrol: sanity check memcg OOM context unwind Johannes Weiner
2013-07-19 4:26 ` Johannes Weiner
2013-07-19 8:23 ` [PATCH for 3.2] memcg: do not trap chargers with full callstack on OOM azurIt
2013-07-19 8:23 ` azurIt
2013-07-19 8:23 ` azurIt
2013-07-14 17:07 ` azurIt
2013-07-14 17:07 ` azurIt
2013-07-09 13:00 ` Michal Hocko
2013-07-09 13:00 ` Michal Hocko
2013-07-09 13:00 ` Michal Hocko
[not found] ` <20130709130017.GE20281-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-07-09 13:08 ` Michal Hocko
2013-07-09 13:08 ` Michal Hocko
2013-07-09 13:08 ` Michal Hocko
[not found] ` <20130709130808.GF20281-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2013-07-09 13:10 ` Michal Hocko
2013-07-09 13:10 ` Michal Hocko
2013-07-09 13:10 ` Michal Hocko
2013-06-24 16:48 ` azurIt
2013-06-24 16:48 ` azurIt
2013-02-22 12:00 ` [PATCH for 3.2.34] memcg: do not trigger OOM if PF_NO_MEMCG_OOM is set azurIt
2013-02-22 12:00 ` azurIt
2013-02-07 11:01 ` [PATCH for 3.2.34] memcg: do not trigger OOM from add_to_page_cache_locked Kamezawa Hiroyuki
2013-02-07 11:01 ` Kamezawa Hiroyuki
[not found] ` <51138999.3090006-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2013-02-07 12:31 ` Michal Hocko
2013-02-07 12:31 ` Michal Hocko
2013-02-07 12:31 ` Michal Hocko
2013-02-08 4:16 ` Kamezawa Hiroyuki
2013-02-08 4:16 ` Kamezawa Hiroyuki
2013-02-08 1:40 ` Kamezawa Hiroyuki
2013-02-08 1:40 ` Kamezawa Hiroyuki
2013-02-08 1:40 ` Kamezawa Hiroyuki
[not found] ` <5114577D.70608-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2013-02-08 16:01 ` Michal Hocko
2013-02-08 16:01 ` Michal Hocko
2013-02-08 16:01 ` Michal Hocko
[not found] ` <20130205154947.CD6411E2-Rm0zKEqwvD4@public.gmane.org>
2013-02-05 16:31 ` Michal Hocko
2013-02-05 16:31 ` Michal Hocko
2013-02-05 16:31 ` Michal Hocko
2012-12-24 13:38 ` azurIt
2012-12-24 13:38 ` azurIt
2012-12-24 13:38 ` azurIt
2012-12-28 16:35 ` Michal Hocko
2012-12-28 16:35 ` Michal Hocko
2012-11-27 0:05 ` [PATCH -mm] " Kamezawa Hiroyuki
2012-11-27 0:05 ` Kamezawa Hiroyuki
2012-11-27 0:05 ` Kamezawa Hiroyuki
[not found] ` <50B403CA.501-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2012-11-27 9:54 ` Michal Hocko
2012-11-27 9:54 ` Michal Hocko
2012-11-27 9:54 ` Michal Hocko
2012-11-27 19:48 ` Johannes Weiner
2012-11-27 19:48 ` Johannes Weiner
2012-11-27 19:48 ` Johannes Weiner
[not found] ` <20121127194813.GP24381-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2012-11-27 20:54 ` [PATCH -v2 " Michal Hocko
2012-11-27 20:54 ` Michal Hocko
2012-11-27 20:54 ` Michal Hocko
[not found] ` <20121127205431.GA2433-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-27 20:59 ` Michal Hocko
2012-11-27 20:59 ` Michal Hocko
2012-11-27 20:59 ` Michal Hocko
[not found] ` <20121127205944.GB2433-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-28 15:26 ` Johannes Weiner
2012-11-28 15:26 ` Johannes Weiner
2012-11-28 15:26 ` Johannes Weiner
2012-11-28 16:04 ` Michal Hocko
2012-11-28 16:04 ` Michal Hocko
2012-11-28 16:04 ` Michal Hocko
[not found] ` <20121128160447.GH12309-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-28 16:37 ` Johannes Weiner
2012-11-28 16:37 ` Johannes Weiner
2012-11-28 16:37 ` Johannes Weiner
2012-11-28 16:46 ` Michal Hocko
2012-11-28 16:46 ` Michal Hocko
2012-11-28 16:48 ` Michal Hocko
2012-11-28 16:48 ` Michal Hocko
2012-11-28 16:48 ` Michal Hocko
[not found] ` <20121128164824.GC22201-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-28 18:44 ` Johannes Weiner
2012-11-28 18:44 ` Johannes Weiner
2012-11-28 18:44 ` Johannes Weiner
2012-11-28 20:20 ` Hugh Dickins
2012-11-28 20:20 ` Hugh Dickins
2012-11-28 20:20 ` Hugh Dickins
2012-11-29 14:05 ` Michal Hocko
2012-11-29 14:05 ` Michal Hocko
2012-11-26 17:46 ` [PATCH " Johannes Weiner
2012-11-26 17:46 ` Johannes Weiner
2012-11-26 18:04 ` Michal Hocko
2012-11-26 18:04 ` Michal Hocko
[not found] ` <20121126180444.GA12602-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-26 18:24 ` Johannes Weiner
2012-11-26 18:24 ` Johannes Weiner
2012-11-26 18:24 ` Johannes Weiner
[not found] ` <20121126182421.GB2301-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2012-11-26 19:03 ` Michal Hocko
2012-11-26 19:03 ` Michal Hocko
2012-11-26 19:03 ` Michal Hocko
[not found] ` <20121126190329.GB12602-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2012-11-26 19:29 ` Johannes Weiner
2012-11-26 19:29 ` Johannes Weiner
2012-11-26 19:29 ` Johannes Weiner
[not found] ` <20121126192941.GC2301-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2012-11-26 20:08 ` Michal Hocko
2012-11-26 20:08 ` Michal Hocko
2012-11-26 20:08 ` Michal Hocko
2012-11-26 20:19 ` Johannes Weiner
2012-11-26 20:19 ` Johannes Weiner
[not found] ` <20121126201918.GD2301-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2012-11-26 20:46 ` azurIt
2012-11-26 20:46 ` azurIt
2012-11-26 20:46 ` azurIt
2012-11-26 20:53 ` Johannes Weiner
2012-11-26 20:53 ` Johannes Weiner
2012-11-26 22:06 ` Michal Hocko
2012-11-26 22:06 ` Michal Hocko
2012-11-26 22:06 ` 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=20130719042623.GH17812@cmpxchg.org \
--to=hannes-druugvl0lcnafugrpc6u6w@public.gmane.org \
--cc=azurit-Rm0zKEqwvD4@public.gmane.org \
--cc=cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=kamezawa.hiroyu-+CUm20s59erQFUHtdCDX3A@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-mm-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org \
--cc=mhocko-AlSwsSmVLrQ@public.gmane.org \
--cc=righi.andrea-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
/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.