From: David Rientjes <rientjes@google.com>
To: Christoph Lameter <clameter@sgi.com>
Cc: Paul Jackson <pj@sgi.com>, Andrea Arcangeli <andrea@suse.de>,
linux-mm@kvack.org
Subject: Re: [PATCH 04 of 24] serialize oom killer
Date: Thu, 13 Sep 2007 20:33:35 -0700 (PDT) [thread overview]
Message-ID: <alpine.DEB.0.9999.0709132010050.30494@chino.kir.corp.google.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0709131923410.12159@schroedinger.engr.sgi.com>
On Thu, 13 Sep 2007, Christoph Lameter wrote:
> > A new spinlock, oom_lock, is introduced for the global case. It
> > serializes the OOM killer for systems that are not using cpusets. Only
> > one system task may enter the OOM killer at a time to prevent
> > unnecessarily killing others.
>
> That oom_lock seems to be handled strangely. There is already a global
> cpuset with the per cpuset locks. If those locks would be available in a
> static structure in the !CPUSET case then I think that we could avoid the
> oom_lock weirdness.
>
Sure, but such a static structure doesn't exist when CONFIG_CPUSETS isn't
defined and there's no reason to create one just for the OOM killer. That
would require declaring the cpuset pointer in each task_struct even when
we haven't enabled cpusets. The OOM killer should be aware of cpuset-
constrained allocations, but not be dependant upon the subsystem.
> > > A per-cpuset flag, CS_OOM, is introduced in the flags field of struct
> > cpuset. It serializes the OOM killer for only for hardwall allocations
> > targeted for that cpuset. Only one task for each cpuset may enter the
> > OOM killer at a time to prevent unnecessarily killing others. When a
> > per-cpuset OOM killing is taking place, the global spinlock is also
> > locked since we'll be alleviating that condition at the same time.
>
> Hummm... If the global lock is taken then we can only run one OOM killer
> at the time right?
>
Yes, and that would happen if we didn't compile with CONFIG_CPUSETS or
constrained_alloc() returns CONSTRAINT_NONE before we call out_of_memory()
because the entire system is OOM.
> > + * If using cpusets, try to lock task's per-cpuset OOM lock; otherwise, try to
> > + * lock the global OOM spinlock. Returns non-zero if the lock is contended or
> > + * zero if acquired.
> > + */
> > +int oom_test_and_set_lock(struct zonelist *zonelist, gfp_t gfp_mask,
> > + enum oom_constraint *constraint)
> > +{
> > + int ret;
> > +
> > + *constraint = constrained_alloc(zonelist, gfp_mask);
> > + switch (*constraint) {
> > + case CONSTRAINT_CPUSET:
> > + ret = cpuset_oom_test_and_set_lock();
> > + if (!ret)
> > + spin_trylock(&oom_lock);
>
> Ummm... If we cannot take the cpuset lock then we just casually try the
> oom_lock and do not care about the result?
>
We did take the cpuset lock.
We're testing and setting the CS_OOM bit in current->cpuset->flags. If it
is 0, meaning we have acquired the lock, we also lock the global lock
since, by definition, any cpuset-constrained OOM killing will also help
alleviate a system-wide OOM condition. If the cpuset lock was contended,
we don't lock the global lock, the function above returns 1, and we sleep
when we return to __alloc_pages() before retrying.
> > + break;
> > + default:
> > + ret = spin_trylock(&oom_lock);
> > + break;
> > + }
>
> So we take the global lock if we run out of memory in an allocation
> restriction using MPOL_BIND?
>
Hmm, looks like we have another opportunity for an improvement here.
We have no way of locking only the nodes in the MPOL_BIND memory policy
like we do on a cpuset granularity. That would require an spinlock in
each node which would work fine if we alter the CONSTRAINT_CPUSET case to
lock each node in current->cpuset->mems_allowed. We could do that if add
a task_lock(current) before trying oom_test_and_set_lock() in
__alloc_pages().
There's also no OOM locking at the zone level for GFP_DMA constrained
allocations, so perhaps locking should be on the zone level.
> > +/*
> > + * If using cpusets, unlock task's per-cpuset OOM lock; otherwise, unlock the
> > + * global OOM spinlock.
> > + */
> > +void oom_unlock(enum oom_constraint constraint)
> > +{
> > + switch (constraint) {
> > + case CONSTRAINT_CPUSET:
> > + if (likely(spin_is_locked(&oom_lock)))
> > + spin_unlock(&oom_lock);
>
> That looks a bit strange too.
>
It looks strange and is open to a race, but it does what we want. We
take both the per-cpuset lock and the global lock whenever we are in a
CONSTRAINT_CPUSET scenario so we need to unlock it here too. The race
isn't in this snippet of code because we're protected by the per-cpuset
lock, but it's in oom_test_and_set_lock() where we lock both:
CPU #1 CPU #2
constrained_alloc() == constrained_alloc() ==
CONSTRAINT_CPUSET CONSTRAINT_NONE
test_and_set_bit(CS_OOM, ...); ...
... spin_trylock(&oom_lock);
... out_of_memory();
spin_trylock(&oom_lock); ...
out_of_memory(); ...
spin_unlock(&oom_lock); ...
In that case, CPU #2 would not unlock &oom_lock because of the conditional
you quoted above.
This scenario doesn't look much like serialization but that's completely
intended. We went OOM in a cpuset and then we went OOM in the system so
something exclusive from the tasks bound to that cpuset caused the second
OOM. So killing current for the CONSTRAINT_CPUSET case probably won't
help that condition since they occurred independently of each other. What
if they didn't? Then the tasklist scanning in out_of_memory() will find
the PF_EXITING task because it's a candidate for killing as well and the
entire OOM killer will become a no-op for CPU #2.
David
--
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:[~2007-09-14 3:33 UTC|newest]
Thread overview: 113+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-22 12:48 [PATCH 00 of 24] OOM related fixes Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 01 of 24] remove nr_scan_inactive/active Andrea Arcangeli
2007-09-12 11:44 ` Andrew Morton
2008-01-02 17:50 ` Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 02 of 24] avoid oom deadlock in nfs_create_request Andrea Arcangeli
2007-09-12 23:54 ` Christoph Lameter
2007-08-22 12:48 ` [PATCH 03 of 24] prevent oom deadlocks during read/write operations Andrea Arcangeli
2007-09-12 11:56 ` Andrew Morton
2007-09-12 2:18 ` Nick Piggin
2008-01-03 0:53 ` Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 04 of 24] serialize oom killer Andrea Arcangeli
2007-09-12 12:02 ` Andrew Morton
2007-09-12 12:04 ` Andrew Morton
2007-09-12 12:11 ` Andrea Arcangeli
2008-01-03 0:55 ` Andrea Arcangeli
2007-09-13 0:09 ` Christoph Lameter
2007-09-13 18:32 ` David Rientjes
2007-09-13 18:37 ` Christoph Lameter
2007-09-13 18:46 ` David Rientjes
2007-09-13 18:53 ` Christoph Lameter
2007-09-14 0:36 ` David Rientjes
2007-09-14 2:31 ` Christoph Lameter
2007-09-14 3:33 ` David Rientjes [this message]
2007-09-18 16:44 ` David Rientjes
2007-09-18 16:44 ` [patch 1/4] oom: move prototypes to appropriate header file David Rientjes
2007-09-18 16:44 ` [patch 2/4] oom: move constraints to enum David Rientjes
2007-09-18 16:44 ` [patch 3/4] oom: save zonelist pointer for oom killer calls David Rientjes
2007-09-18 16:44 ` [patch 4/4] oom: serialize out of memory calls David Rientjes
2007-09-18 19:54 ` Christoph Lameter
2007-09-18 19:56 ` David Rientjes
2007-09-18 20:01 ` Christoph Lameter
2007-09-18 20:06 ` David Rientjes
2007-09-18 20:23 ` [patch 5/4] oom: rename serialization helper functions David Rientjes
2007-09-18 20:26 ` Christoph Lameter
2007-09-18 20:39 ` [patch 5/4 v2] " David Rientjes
2007-09-18 20:59 ` Christoph Lameter
2007-09-18 19:57 ` [patch 3/4] oom: save zonelist pointer for oom killer calls Christoph Lameter
2007-09-18 20:13 ` David Rientjes
2007-09-18 20:16 ` Christoph Lameter
2007-09-18 20:47 ` [patch 6/4] oom: pass null to kfree if zonelist is not cleared David Rientjes
2007-09-18 21:01 ` Christoph Lameter
2007-09-18 21:13 ` David Rientjes
2007-09-18 21:25 ` Christoph Lameter
2007-09-18 22:16 ` David Rientjes
2007-09-19 17:09 ` Paul Jackson
2007-09-19 18:21 ` David Rientjes
2007-09-18 19:55 ` [patch 2/4] oom: move constraints to enum Christoph Lameter
2007-08-22 12:48 ` [PATCH 05 of 24] avoid selecting already killed tasks Andrea Arcangeli
2007-09-13 0:13 ` Christoph Lameter
2007-08-22 12:48 ` [PATCH 06 of 24] reduce the probability of an OOM livelock Andrea Arcangeli
2007-09-12 12:17 ` Andrew Morton
2008-01-03 1:03 ` Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 07 of 24] balance_pgdat doesn't return the number of pages freed Andrea Arcangeli
2007-09-12 12:18 ` Andrew Morton
2007-09-13 0:26 ` Christoph Lameter
2007-08-22 12:48 ` [PATCH 08 of 24] don't depend on PF_EXITING tasks to go away Andrea Arcangeli
2007-09-12 12:20 ` Andrew Morton
2008-01-03 0:56 ` Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 09 of 24] fallback killing more tasks if tif-memdie doesn't " Andrea Arcangeli
2007-09-12 12:30 ` Andrew Morton
2007-09-12 12:34 ` Andrew Morton
2008-01-03 1:06 ` Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 10 of 24] stop useless vm trashing while we wait the TIF_MEMDIE task to exit Andrea Arcangeli
2007-09-12 12:42 ` Andrew Morton
2007-09-13 0:36 ` Christoph Lameter
2007-09-21 19:10 ` David Rientjes
2008-01-03 1:08 ` Andrea Arcangeli
2007-08-22 12:48 ` [PATCH 11 of 24] the oom schedule timeout isn't needed with the VM_is_OOM logic Andrea Arcangeli
2007-09-12 12:44 ` Andrew Morton
2007-08-22 12:48 ` [PATCH 12 of 24] show mem information only when a task is actually being killed Andrea Arcangeli
2007-09-12 12:49 ` Andrew Morton
2007-08-22 12:49 ` [PATCH 13 of 24] simplify oom heuristics Andrea Arcangeli
2007-09-12 12:52 ` Andrew Morton
2007-09-12 13:40 ` Andrea Arcangeli
2007-09-12 20:52 ` Andrew Morton
2007-08-22 12:49 ` [PATCH 14 of 24] oom select should only take rss into account Andrea Arcangeli
2007-09-13 0:43 ` Christoph Lameter
2007-08-22 12:49 ` [PATCH 15 of 24] limit reclaim if enough pages have been freed Andrea Arcangeli
2007-09-12 12:57 ` Andrew Morton
2008-01-03 1:12 ` Andrea Arcangeli
2007-09-12 12:58 ` Andrew Morton
2007-09-12 13:38 ` Andrea Arcangeli
2007-08-22 12:49 ` [PATCH 16 of 24] avoid some lock operation in vm fast path Andrea Arcangeli
2007-09-12 12:59 ` Andrew Morton
2007-09-13 0:49 ` Christoph Lameter
2007-09-13 1:16 ` Andrew Morton
2007-09-13 1:33 ` Christoph Lameter
2007-09-13 1:41 ` KAMEZAWA Hiroyuki
2007-09-13 1:44 ` Andrew Morton
2007-08-22 12:49 ` [PATCH 17 of 24] apply the anti deadlock features only to global oom Andrea Arcangeli
2007-09-12 13:02 ` Andrew Morton
2007-09-13 0:53 ` Christoph Lameter
2007-09-13 0:52 ` Christoph Lameter
2007-08-22 12:49 ` [PATCH 18 of 24] run panic the same way in both places Andrea Arcangeli
2007-09-13 0:54 ` Christoph Lameter
2007-08-22 12:49 ` [PATCH 19 of 24] cacheline align VM_is_OOM to prevent false sharing Andrea Arcangeli
2007-09-12 13:02 ` Andrew Morton
2007-09-12 13:36 ` Andrea Arcangeli
2007-09-13 0:55 ` Christoph Lameter
2007-08-22 12:49 ` [PATCH 20 of 24] extract deadlock helper function Andrea Arcangeli
2007-08-22 12:49 ` [PATCH 21 of 24] select process to kill for cpusets Andrea Arcangeli
2007-09-12 13:05 ` Andrew Morton
2007-09-13 0:59 ` Christoph Lameter
2007-09-13 5:13 ` David Rientjes
2007-09-13 17:55 ` Christoph Lameter
2007-08-22 12:49 ` [PATCH 22 of 24] extract select helper function Andrea Arcangeli
2007-08-22 12:49 ` [PATCH 23 of 24] serialize for cpusets Andrea Arcangeli
2007-09-12 13:10 ` Andrew Morton
2007-09-12 13:34 ` Andrea Arcangeli
2007-09-12 19:08 ` David Rientjes
2007-09-13 1:02 ` Christoph Lameter
2007-08-22 12:49 ` [PATCH 24 of 24] add oom_kill_asking_task flag Andrea Arcangeli
2007-09-12 13:11 ` Andrew Morton
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=alpine.DEB.0.9999.0709132010050.30494@chino.kir.corp.google.com \
--to=rientjes@google.com \
--cc=andrea@suse.de \
--cc=clameter@sgi.com \
--cc=linux-mm@kvack.org \
--cc=pj@sgi.com \
/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