From: Jens Axboe <axboe@kernel.dk>
To: Damien Le Moal <Damien.LeMoal@wdc.com>, Ming Lei <ming.lei@redhat.com>
Cc: "linux-block@vger.kernel.org" <linux-block@vger.kernel.org>,
Christoph Hellwig <hch@lst.de>,
Matias Bjorling <Matias.Bjorling@wdc.com>
Subject: Re: [PATCH] block: Disable write plugging for zoned block devices
Date: Wed, 10 Jul 2019 07:59:25 -0600 [thread overview]
Message-ID: <8d386a51-52b3-12ab-736d-e3195b150c5d@kernel.dk> (raw)
In-Reply-To: <BYAPR04MB5816B43AEAACBCBCEE27588AE7F00@BYAPR04MB5816.namprd04.prod.outlook.com>
On 7/9/19 8:59 PM, Damien Le Moal wrote:
> On 7/10/19 11:55 AM, Jens Axboe wrote:
>> On 7/9/19 8:29 AM, Ming Lei wrote:
>>> On Tue, Jul 09, 2019 at 06:02:19PM +0900, Damien Le Moal wrote:
>>>> Simultaneously writing to a sequential zone of a zoned block device
>>>> from multiple contexts requires mutual exclusion for BIO issuing to
>>>> ensure that writes happen sequentially. However, even for a well
>>>> behaved user correctly implementing such synchronization, BIO plugging
>>>> may interfere and result in BIOs from the different contextx to be
>>>> reordered if plugging is done outside of the mutual exclusion section,
>>>> e.g. the plug was started by a function higher in the call chain than
>>>> the function issuing BIOs.
>>>>
>>>> Context A Context B
>>>>
>>>> | blk_start_plug()
>>>> | ...
>>>> | seq_write_zone()
>>>> | mutex_lock(zone)
>>>> | submit_bio(bio-0)
>>>> | submit_bio(bio-1)
>>>> | mutex_unlock(zone)
>>>> | return
>>>> | ------------------------------> | seq_write_zone()
>>>> | mutex_lock(zone)
>>>> | submit_bio(bio-2)
>>>> | mutex_unlock(zone)
>>>> | <------------------------------ |
>>>> | blk_finish_plug()
>>>>
>>>> In the above example, despite the mutex synchronization resulting in the
>>>> correct BIO issuing order 0, 1, 2, context A BIOs 0 and 1 end up being
>>>> issued after BIO 2 when the plug is released with blk_finish_plug().
>>>
>>> I am wondering how you guarantee that context B is always run after
>>> context A.
>>>
>>>>
>>>> To fix this problem, introduce the internal helper function
>>>> blk_mq_plug() to access the current context plug, return the current
>>>> plug only if the target device is not a zoned block device or if the
>>>> BIO to be plugged not a write operation. Otherwise, ignore the plug and
>>>> return NULL, resulting is all writes to zoned block device to never be
>>>> plugged.
>>>
>>> Another candidate approach is to run the following code before
>>> releasing 'zone' lock:
>>>
>>> if (current->plug)
>>> blk_finish_plug(context->plug)
>>>
>>> Then we can fix zone specific issue in zone code only, and avoid generic
>>> blk-core change for zone issue.
>>
>> I prefer that to the existing solution as well.
>
> My apologies, you lost me: do you mean that you prefer Ming's suggestion
> and force FS or dm users to manually unplug in the case of zoned block
> devices ?
I take that back, I thought we could do it manually in the zoned code
while dealing with the locking, but I don't think that is feasible.
--
Jens Axboe
next prev parent reply other threads:[~2019-07-10 13:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-09 9:02 [PATCH] block: Disable write plugging for zoned block devices Damien Le Moal
2019-07-09 11:15 ` Johannes Thumshirn
2019-07-09 13:51 ` Bart Van Assche
2019-07-09 14:59 ` Damien Le Moal
2019-07-09 14:29 ` Ming Lei
2019-07-09 14:47 ` Damien Le Moal
2019-07-10 3:10 ` Ming Lei
2019-07-10 4:14 ` Damien Le Moal
2019-07-10 2:55 ` Jens Axboe
2019-07-10 2:59 ` Damien Le Moal
2019-07-10 13:59 ` Jens Axboe [this message]
2019-07-10 2:32 ` Bart Van Assche
2019-07-10 2:36 ` Damien Le Moal
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=8d386a51-52b3-12ab-736d-e3195b150c5d@kernel.dk \
--to=axboe@kernel.dk \
--cc=Damien.LeMoal@wdc.com \
--cc=Matias.Bjorling@wdc.com \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=ming.lei@redhat.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