From: Jens Axboe <axboe@kernel.dk>
To: Ming Lei <tom.leiming@gmail.com>, David Jeffery <djeffery@redhat.com>
Cc: linux-block <linux-block@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] block: Fix warning when I/O elevator is changed as request_queue is being removed
Date: Mon, 28 Aug 2017 10:54:03 -0600 [thread overview]
Message-ID: <1e189293-8b82-d279-38e0-22735afde00c@kernel.dk> (raw)
In-Reply-To: <CACVXFVNuOvfjNu-0MxtEAGH3854vTkTk86ZEWhWB1w-MJx_7jA@mail.gmail.com>
On 08/27/2017 07:36 PM, Ming Lei wrote:
> On Wed, Aug 23, 2017 at 11:34 AM, Ming Lei <tom.leiming@gmail.com> wrote:
>> On Wed, Aug 9, 2017 at 9:44 AM, Ming Lei <tom.leiming@gmail.com> wrote:
>>> Hi David,
>>>
>>> On Wed, Aug 9, 2017 at 2:13 AM, David Jeffery <djeffery@redhat.com> wrote:
>>>> On 08/07/2017 07:53 PM, Ming Lei wrote:
>>>>> On Tue, Aug 8, 2017 at 3:38 AM, David Jeffery <djeffery@redhat.com> wrote:
>>>>
>>>>>>
>>>>>> Signed-off-by: David Jeffery <djeffery@redhat.com>
>>>>>> ---
>>>>>> block/blk-sysfs.c | 2 ++
>>>>>> block/elevator.c | 4 ++++
>>>>>> 2 files changed, 6 insertions(+)
>>>>>>
>>>>>>
>>>>>> diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
>>>>>> index 27aceab..b8362c0 100644
>>>>>> --- a/block/blk-sysfs.c
>>>>>> +++ b/block/blk-sysfs.c
>>>>>> @@ -931,7 +931,9 @@ void blk_unregister_queue(struct gendisk *disk)
>>>>>> if (WARN_ON(!q))
>>>>>> return;
>>>>>>
>>>>>> + mutex_lock(&q->sysfs_lock);
>>>>>> queue_flag_clear_unlocked(QUEUE_FLAG_REGISTERED, q);
>>>>>> + mutex_unlock(&q->sysfs_lock);
>>>>>
>>>>> Could you share why the lock of 'q->sysfs_lock' is needed here?
>>>>
>>>> As the elevator change is initiated through a sysfs attr file in the
>>>> queue directory, the task doing the elevator change already acquires the
>>>> q->sysfs_lock before it can try and change the elevator. Adding the
>>>
>>> It is e->sysfs_lock which is held in elv_attr_store(), instead of q->sysfs_lock.
>>
>> Looks I was wrong, and the store is from queue_attr_store() instead of
>> elv_attr_store().
>>
>> I can reproduce the issue and this patch can fix the issue in my test
>> on scsi_debug,
>> so:
>>
>> Tested-by: Ming Lei <ming.lei@redhat.com>
>>
>> And it is a typical race between removing queue kobj and adding children of
>> this queue kobj, we can't acquire q->sysfs_lock in blk_unregister_queue()
>> because of sysfs's limit(may cause deadlock), so one state has to be used
>> for this purpose, just like what register/unregister hctx kobjs does,
>> and it should
>> be fine to use QUEUE_FLAG_REGISTERED here. More changes are required if
>> we use e->registered, so this patch looks fine:
>>
>> Reviewed-by: Ming Lei <ming.lei@redhat.com>
>
>
> Hi Jens,
>
> Could you consider this patch for v4.13 or v4.14?
Yep, added for 4.14, thanks.
--
Jens Axboe
prev parent reply other threads:[~2017-08-28 16:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-07 19:38 [PATCH] block: Fix warning when I/O elevator is changed as request_queue is being removed David Jeffery
2017-08-07 23:53 ` Ming Lei
2017-08-08 18:13 ` David Jeffery
2017-08-09 1:44 ` Ming Lei
2017-08-23 3:34 ` Ming Lei
2017-08-28 1:36 ` Ming Lei
2017-08-28 16:54 ` Jens Axboe [this message]
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=1e189293-8b82-d279-38e0-22735afde00c@kernel.dk \
--to=axboe@kernel.dk \
--cc=djeffery@redhat.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tom.leiming@gmail.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