From: Sasha Levin <sasha.levin@oracle.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: "Kirill A. Shutemov" <kirill@shutemov.name>,
akpm@linux-foundation.org, linux-mm@kvack.org,
LKML <linux-kernel@vger.kernel.org>,
Ingo Molnar <mingo@kernel.org>
Subject: Re: [RFC 1/2] mm: additional page lock debugging
Date: Tue, 31 Dec 2013 11:42:04 -0500 [thread overview]
Message-ID: <52C2F3DC.2020106@oracle.com> (raw)
In-Reply-To: <20131231162636.GD16438@laptop.programming.kicks-ass.net>
On 12/31/2013 11:26 AM, Peter Zijlstra wrote:
> On Mon, Dec 30, 2013 at 10:22:02PM -0500, Sasha Levin wrote:
>
>> I really want to use lockdep here, but I'm not really sure how to handle locks which live
>> for a rather long while instead of being locked and unlocked in the same function like
>> most of the rest of the kernel. (Cc Ingo, PeterZ).
>
> Uh what? Lockdep doesn't care about which function locks and unlocks a
> particular lock. Nor does it care how long its held for.
Sorry, I messed up trying to explain that.
There are several places in the code which lock a large amount of pages, something like:
for (i = 0; i < (1 << order); i++)
lock_page(&pages[i]);
This triggers two problems:
- lockdep complains about deadlock since we try to lock another page while one is already
locked. I can clear that by allowing page locks to nest within each other, but that seems
wrong and we'll miss actual deadlock cases.
- We may leave back to userspace with pages still locked. This is valid behaviour but lockdep
doesn't like that.
Thanks,
Sasha
--
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: Sasha Levin <sasha.levin@oracle.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: "Kirill A. Shutemov" <kirill@shutemov.name>,
akpm@linux-foundation.org, linux-mm@kvack.org,
LKML <linux-kernel@vger.kernel.org>,
Ingo Molnar <mingo@kernel.org>
Subject: Re: [RFC 1/2] mm: additional page lock debugging
Date: Tue, 31 Dec 2013 11:42:04 -0500 [thread overview]
Message-ID: <52C2F3DC.2020106@oracle.com> (raw)
In-Reply-To: <20131231162636.GD16438@laptop.programming.kicks-ass.net>
On 12/31/2013 11:26 AM, Peter Zijlstra wrote:
> On Mon, Dec 30, 2013 at 10:22:02PM -0500, Sasha Levin wrote:
>
>> I really want to use lockdep here, but I'm not really sure how to handle locks which live
>> for a rather long while instead of being locked and unlocked in the same function like
>> most of the rest of the kernel. (Cc Ingo, PeterZ).
>
> Uh what? Lockdep doesn't care about which function locks and unlocks a
> particular lock. Nor does it care how long its held for.
Sorry, I messed up trying to explain that.
There are several places in the code which lock a large amount of pages, something like:
for (i = 0; i < (1 << order); i++)
lock_page(&pages[i]);
This triggers two problems:
- lockdep complains about deadlock since we try to lock another page while one is already
locked. I can clear that by allowing page locks to nest within each other, but that seems
wrong and we'll miss actual deadlock cases.
- We may leave back to userspace with pages still locked. This is valid behaviour but lockdep
doesn't like that.
Thanks,
Sasha
next prev parent reply other threads:[~2013-12-31 16:42 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-29 1:45 [RFC 1/2] mm: additional page lock debugging Sasha Levin
2013-12-29 1:45 ` Sasha Levin
2013-12-29 1:45 ` [RFC 2/2] mm: additional checks to page flag set/clear Sasha Levin
2013-12-29 1:45 ` Sasha Levin
2013-12-30 12:12 ` Kirill A. Shutemov
2013-12-30 12:12 ` Kirill A. Shutemov
2013-12-30 11:43 ` [RFC 1/2] mm: additional page lock debugging Kirill A. Shutemov
2013-12-30 11:43 ` Kirill A. Shutemov
2013-12-30 16:33 ` Sasha Levin
2013-12-30 16:33 ` Sasha Levin
2013-12-30 22:48 ` Kirill A. Shutemov
2013-12-30 22:48 ` Kirill A. Shutemov
2013-12-31 3:22 ` Sasha Levin
2013-12-31 3:22 ` Sasha Levin
2013-12-31 16:26 ` Peter Zijlstra
2013-12-31 16:26 ` Peter Zijlstra
2013-12-31 16:42 ` Sasha Levin [this message]
2013-12-31 16:42 ` Sasha Levin
2014-01-06 10:04 ` Peter Zijlstra
2014-01-06 10:04 ` Peter Zijlstra
2014-02-10 23:19 ` Sasha Levin
2014-02-10 23:19 ` Sasha Levin
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=52C2F3DC.2020106@oracle.com \
--to=sasha.levin@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=kirill@shutemov.name \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mingo@kernel.org \
--cc=peterz@infradead.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.