From: Richard Weinberger <richard@nod.at>
To: dedekind1@gmail.com
Cc: linux-mtd@lists.infradead.org, computersforpeace@gmail.com,
dwmw2@infradead.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] UBI: Fix possible deadlock in erase_worker()
Date: Wed, 17 Sep 2014 10:40:03 +0200 [thread overview]
Message-ID: <541948E3.3080602@nod.at> (raw)
In-Reply-To: <1410942507.28850.78.camel@sauron.fi.intel.com>
Am 17.09.2014 10:28, schrieb Artem Bityutskiy:
> On Tue, 2014-09-16 at 09:48 +0200, Richard Weinberger wrote:
>> If sync_erase() failes with EINTR, ENOMEM, EAGAIN or
>> EBUSY erase_worker() re-schedules the failed work.
>> This will lead to a deadlock because erase_worker() is called
>> with work_sem held in read mode. And schedule_erase() will take
>> this lock again.
>
> IIRC, the assumption was that the R/W semaphore may be taken in read
> mode many times, so it wouldn't hurt to do:
>
> down_read()
> down_read()
> up_read()
> up_read()
Hmm, are you sure that this is legal?
Quoting rwsem.h:
/*
* nested locking. NOTE: rwsems are not allowed to recurse
* (which occurs if the same task tries to acquire the same
* lock instance multiple times), but multiple locks of the
* same lock class might be taken, if the order of the locks
* is always the same. This ordering rule can be expressed
* to lockdep via the _nested() APIs, but enumerating the
* subclasses that are used. (If the nesting relationship is
* static then another method for expressing nested locking is
* the explicit definition of lock class keys and the use of
* lockdep_set_class() at lock initialization time.
* See Documentation/lockdep-design.txt for more details.)
*/
In this case the same task is taking the same lock multiple times,
which is not allowed according to rwsem.h.
Thanks,
//richard
WARNING: multiple messages have this Message-ID (diff)
From: Richard Weinberger <richard@nod.at>
To: dedekind1@gmail.com
Cc: dwmw2@infradead.org, computersforpeace@gmail.com,
linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] UBI: Fix possible deadlock in erase_worker()
Date: Wed, 17 Sep 2014 10:40:03 +0200 [thread overview]
Message-ID: <541948E3.3080602@nod.at> (raw)
In-Reply-To: <1410942507.28850.78.camel@sauron.fi.intel.com>
Am 17.09.2014 10:28, schrieb Artem Bityutskiy:
> On Tue, 2014-09-16 at 09:48 +0200, Richard Weinberger wrote:
>> If sync_erase() failes with EINTR, ENOMEM, EAGAIN or
>> EBUSY erase_worker() re-schedules the failed work.
>> This will lead to a deadlock because erase_worker() is called
>> with work_sem held in read mode. And schedule_erase() will take
>> this lock again.
>
> IIRC, the assumption was that the R/W semaphore may be taken in read
> mode many times, so it wouldn't hurt to do:
>
> down_read()
> down_read()
> up_read()
> up_read()
Hmm, are you sure that this is legal?
Quoting rwsem.h:
/*
* nested locking. NOTE: rwsems are not allowed to recurse
* (which occurs if the same task tries to acquire the same
* lock instance multiple times), but multiple locks of the
* same lock class might be taken, if the order of the locks
* is always the same. This ordering rule can be expressed
* to lockdep via the _nested() APIs, but enumerating the
* subclasses that are used. (If the nesting relationship is
* static then another method for expressing nested locking is
* the explicit definition of lock class keys and the use of
* lockdep_set_class() at lock initialization time.
* See Documentation/lockdep-design.txt for more details.)
*/
In this case the same task is taking the same lock multiple times,
which is not allowed according to rwsem.h.
Thanks,
//richard
next prev parent reply other threads:[~2014-09-17 8:40 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-16 7:48 [PATCH] UBI: Fix possible deadlock in erase_worker() Richard Weinberger
2014-09-16 7:48 ` Richard Weinberger
2014-09-17 8:28 ` Artem Bityutskiy
2014-09-17 8:28 ` Artem Bityutskiy
2014-09-17 8:40 ` Richard Weinberger [this message]
2014-09-17 8:40 ` Richard Weinberger
2014-09-17 8:43 ` Artem Bityutskiy
2014-09-17 8:43 ` Artem Bityutskiy
2014-09-17 9:35 ` Artem Bityutskiy
2014-09-17 9:35 ` Artem Bityutskiy
2014-09-19 9:46 ` Richard Weinberger
2014-09-19 9:46 ` Richard Weinberger
2014-09-19 10:47 ` Artem Bityutskiy
2014-09-19 10:47 ` Artem Bityutskiy
2014-09-19 11:01 ` Richard Weinberger
2014-09-19 11:01 ` Richard Weinberger
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=541948E3.3080602@nod.at \
--to=richard@nod.at \
--cc=computersforpeace@gmail.com \
--cc=dedekind1@gmail.com \
--cc=dwmw2@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=stable@vger.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 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.