From: "Andreas Hindborg (Samsung)" <nmi@metaspace.dk>
To: Ming Lei <tom.leiming@gmail.com>
Cc: Ming Lei <ming.lei@redhat.com>,
Christoph Hellwig <hch@infradead.org>,
gost.dev@samsung.com,
"open list:BLOCK LAYER" <linux-block@vger.kernel.org>,
Hans Holmberg <Hans.Holmberg@wdc.com>,
Matias Bjorling <Matias.Bjorling@wdc.com>,
Minwoo Im <minwoo.im.dev@gmail.com>, Jens Axboe <axboe@kernel.dk>,
Johannes Thumshirn <jth@kernel.org>,
Aravind Ramesh <Aravind.Ramesh@wdc.com>,
Damien Le Moal <dlemoal@kernel.org>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v10 2/3] ublk: move check for empty address field on command submission
Date: Fri, 04 Aug 2023 12:08:55 +0200 [thread overview]
Message-ID: <87350zxgkk.fsf@metaspace.dk> (raw)
In-Reply-To: <ZMy+dTpJzln7DlgZ@ovpn-8-25.pek2.redhat.com>
Ming Lei <tom.leiming@gmail.com> writes:
> Hi Andreas,
>
> On Thu, Aug 03, 2023 at 04:07:00PM +0200, Andreas Hindborg (Samsung) wrote:
>> From: Andreas Hindborg <a.hindborg@samsung.com>
>>
>> In preparation for zoned storage support, move the check for empty `addr`
>> field into the command handler case statement. Note that the check makes no
>> sense for `UBLK_IO_NEED_GET_DATA` because the `addr` field must always be
>> set for this command.
>>
>> Signed-off-by: Andreas Hindborg <a.hindborg@samsung.com>
>> ---
>> drivers/block/ublk_drv.c | 18 +++++++++++++-----
>> 1 file changed, 13 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c
>> index db3523e281a6..5a1ee17636ac 100644
>> --- a/drivers/block/ublk_drv.c
>> +++ b/drivers/block/ublk_drv.c
>> @@ -1419,11 +1419,6 @@ static int __ublk_ch_uring_cmd(struct io_uring_cmd *cmd,
>> ^ (_IOC_NR(cmd_op) == UBLK_IO_NEED_GET_DATA))
>> goto out;
>>
>> - if (ublk_support_user_copy(ubq) && ub_cmd->addr) {
>> - ret = -EINVAL;
>> - goto out;
>> - }
>> -
>> ret = ublk_check_cmd_op(cmd_op);
>> if (ret)
>> goto out;
>> @@ -1452,6 +1447,12 @@ static int __ublk_ch_uring_cmd(struct io_uring_cmd *cmd,
>> goto out;
>> }
>>
>> + /* User copy requires addr to be unset */
>> + if (ublk_support_user_copy(ubq) && ub_cmd->addr) {
>> + ret = -EINVAL;
>> + goto out;
>> + }
>> +
>
> Given you have to post v11 for fixing build issue, please convert the
> above two 'if' into one 'if else':
>
> if (!ublk_support_user_copy(ubq)) {
> /*
> * FETCH_RQ has to provide IO buffer if NEED GET
> * DATA is not enabled
> */
> if (!ub_cmd->addr && !ublk_need_get_data(ubq))
> goto out;
> } else {
> if (ub_cmd->addr) {
> ret = -EINVAL;
> goto out;
> }
> }
Alright. I was debating with myself one over the other 😅
>
>> ublk_fill_io_cmd(io, cmd, ub_cmd->addr);
>> ublk_mark_io_ready(ub, ubq);
>> break;
>> @@ -1470,6 +1471,13 @@ static int __ublk_ch_uring_cmd(struct io_uring_cmd *cmd,
>> req_op(req) == REQ_OP_READ))
>> goto out;
>> }
>> +
>> + /* User copy requires addr to be unset */
>> + if (ublk_support_user_copy(ubq) && ub_cmd->addr) {
>> + ret = -EINVAL;
>> + goto out;
>> + }
>> +
>
> Same with above.
>
> BTW, I have verified this patchset with ublk-zoned example in
> libublk-rs:
>
> https://github.com/ming1/libublk-rs/tree/zoned.v2
>
> cargo run --example zoned -- add -1 10240
> mkfs.btrfs -O zoned /dev/ublkb0
> mount & git clone linux-kernel &umount
Thanks!
BR Andreas
next prev parent reply other threads:[~2023-08-04 10:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-03 14:06 [PATCH v10 0/3] ublk: enable zoned storage support Andreas Hindborg (Samsung)
2023-08-03 14:06 ` [PATCH v10 1/3] ublk: add helper to check if device supports user copy Andreas Hindborg (Samsung)
2023-08-03 19:02 ` Johannes Thumshirn
2023-08-03 14:07 ` [PATCH v10 2/3] ublk: move check for empty address field on command submission Andreas Hindborg (Samsung)
2023-08-04 9:01 ` Ming Lei
2023-08-04 10:08 ` Andreas Hindborg (Samsung) [this message]
2023-08-03 14:07 ` [PATCH v10 3/3] ublk: enable zoned storage support Andreas Hindborg (Samsung)
2023-08-03 18:58 ` kernel test robot
2023-08-03 19:07 ` Johannes Thumshirn
2023-08-04 8:59 ` Andreas Hindborg (Samsung)
2023-08-04 10:25 ` Johannes Thumshirn
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=87350zxgkk.fsf@metaspace.dk \
--to=nmi@metaspace.dk \
--cc=Aravind.Ramesh@wdc.com \
--cc=Hans.Holmberg@wdc.com \
--cc=Matias.Bjorling@wdc.com \
--cc=axboe@kernel.dk \
--cc=dlemoal@kernel.org \
--cc=gost.dev@samsung.com \
--cc=hch@infradead.org \
--cc=jth@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=ming.lei@redhat.com \
--cc=minwoo.im.dev@gmail.com \
--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 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.