From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Chris Mason <chris.mason@oracle.com>
Cc: linux-mm@kvack.org, Matthew Wilcox <matthew@wil.cx>,
"chuck.lever" <chuck.lever@oracle.com>,
Andrew Morton <akpm@linux-foundation.org>,
stable@kernel.org
Subject: Re: [PATCH] Avoid lost wakeups in lock_page_killable()
Date: Sat, 17 Jan 2009 10:01:17 +0100 [thread overview]
Message-ID: <1232182877.7141.39.camel@twins> (raw)
In-Reply-To: <1232116107.21473.14.camel@think.oraclecorp.com>
On Fri, 2009-01-16 at 09:28 -0500, Chris Mason wrote:
> lock_page and lock_page_killable both call __wait_on_bit_lock, and
> both end up using prepare_to_wait_exclusive(). This means that when
> someone does finally unlock the page, only one process is going to get
> woken up.
>
> But lock_page_killable can exit without taking the lock. If nobody
> else comes in and locks the page, any other waiters will wait forever.
>
> For example, procA holding the page lock, procB and procC are waiting on
> the lock.
>
> procA: lock_page() // success
> procB: lock_page_killable(), sync_page_killable(), io_schedule()
> procC: lock_page_killable(), sync_page_killable(), io_schedule()
>
> procA: unlock, wake_up_page(page, PG_locked)
> procA: wake up procB
>
> happy admin: kill procB
>
> procB: wakes into sync_page_killable(), notices the signal and returns
> -EINTR
>
> procB: __wait_on_bit_lock sees the action() func returns < 0 and does
> not take the page lock
>
> procB: lock_page_killable() returns < 0 and exits happily.
>
> procC: sleeping in io_schedule() forever unless someone else locks the
> page.
>
> This was seen in production on systems where the database was shutting
> down. Testing shows the patch fixes things.
>
> Chuck Lever did all the hard work here, with a page lock debugging
> patch that proved we were missing a wakeup.
>
> Every version of lock_page_killable() should need this.
>
> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Right, so at worst this creates a spurious wakeup, but avoids the must
more serious issue of a lost wakeup.
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> diff --git a/mm/filemap.c b/mm/filemap.c
> index ceba0bd..e1184fa 100644
> --- a/mm/filemap.c
> +++ b/mm/filemap.c
> @@ -623,9 +623,20 @@ EXPORT_SYMBOL(__lock_page);
> int __lock_page_killable(struct page *page)
> {
> DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
> + int ret;
>
> - return __wait_on_bit_lock(page_waitqueue(page), &wait,
> + ret = __wait_on_bit_lock(page_waitqueue(page), &wait,
> sync_page_killable, TASK_KILLABLE);
> + /*
> + * wait_on_bit_lock uses prepare_to_wait_exclusive, so if multiple
> + * procs were waiting on this page, we were the only proc woken up.
> + *
> + * if ret != 0, we didn't actually get the lock. We need to
> + * make sure any other waiters don't sleep forever.
> + */
> + if (ret)
> + wake_up_page(page, PG_locked);
> + 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-17 9:01 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-16 14:28 [PATCH] Avoid lost wakeups in lock_page_killable() Chris Mason
2009-01-17 9:01 ` Peter Zijlstra [this message]
2009-01-17 12:48 ` Johannes Weiner
2009-01-17 16:32 ` Johannes Weiner
2009-01-27 2:41 ` Andrew Morton
2009-01-27 2:48 ` 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=1232182877.7141.39.camel@twins \
--to=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=chris.mason@oracle.com \
--cc=chuck.lever@oracle.com \
--cc=linux-mm@kvack.org \
--cc=matthew@wil.cx \
--cc=stable@kernel.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 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).