qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Stefano Garzarella <sgarzare@redhat.com>
Cc: Fam Zheng <fam@euphon.net>, Kevin Wolf <kwolf@redhat.com>,
	qemu-block@nongnu.org, qemu-devel@nongnu.org,
	Max Reitz <mreitz@redhat.com>,
	Stefan Hajnoczi <stefanha@redhat.com>
Subject: Re: [PATCH v5 12/15] block/nvme: Replace BDRV_POLL_WHILE by AIO_WAIT_WHILE
Date: Fri, 21 Aug 2020 15:15:58 +0200	[thread overview]
Message-ID: <84f6400d-1681-45e5-d271-d2311519dde7@redhat.com> (raw)
In-Reply-To: <20200821101517.tgypwxqsjw2wfbxy@steredhat>

On 8/21/20 12:15 PM, Stefano Garzarella wrote:
> On Thu, Aug 20, 2020 at 06:58:58PM +0200, Philippe Mathieu-Daudé wrote:
>> BDRV_POLL_WHILE() is defined as:
>>
>>   #define BDRV_POLL_WHILE(bs, cond) ({          \
>>       BlockDriverState *bs_ = (bs);             \
>>       AIO_WAIT_WHILE(bdrv_get_aio_context(bs_), \
>>                      cond); })
>>
>> As we will remove the BlockDriverState use in the next commit,
>> start by using the exploded version of BDRV_POLL_WHILE().
>>
>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>>  block/nvme.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/block/nvme.c b/block/nvme.c
>> index 5b69fc75a60..456fe61f5ea 100644
>> --- a/block/nvme.c
>> +++ b/block/nvme.c
>> @@ -493,6 +493,7 @@ static void nvme_cmd_sync_cb(void *opaque, int ret)
>>  static int nvme_cmd_sync(BlockDriverState *bs, NVMeQueuePair *q,
>>                           NvmeCmd *cmd)
>>  {
>> +    AioContext *aio_context = bdrv_get_aio_context(bs);
>>      NVMeRequest *req;
>>      int ret = -EINPROGRESS;
>>      req = nvme_get_free_req(q);
>> @@ -501,7 +502,7 @@ static int nvme_cmd_sync(BlockDriverState *bs, NVMeQueuePair *q,
>>      }
>>      nvme_submit_command(q, req, cmd, nvme_cmd_sync_cb, &ret);
>>  
>> -    BDRV_POLL_WHILE(bs, ret == -EINPROGRESS);
>> +    AIO_WAIT_WHILE(aio_context, ret == -EINPROGRESS);
> 
> Maybe I would have:
> 
>     AIO_WAIT_WHILE(bdrv_get_aio_context(bs), ret == -EINPROGRESS);

I extracted aio_context in this patch because in the following
series it is passed by the caller as an argument to nvme_cmd_sync(),
so this makes the next series simpler to review.

> 
> But it doesn't matter, LGTM:
> 
> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>

Thanks!

> 
>>      return ret;
>>  }
>>  
>> -- 
>> 2.26.2
>>
>>
> 



  reply	other threads:[~2020-08-21 13:16 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-20 16:58 [PATCH v5 00/15] block/nvme: Various cleanups required to use multiple queues Philippe Mathieu-Daudé
2020-08-20 16:58 ` [PATCH v5 01/15] block/nvme: Replace magic value by SCALE_MS definition Philippe Mathieu-Daudé
2020-08-21  9:33   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 02/15] block/nvme: Avoid further processing if trace event not enabled Philippe Mathieu-Daudé
2020-08-20 16:58 ` [PATCH v5 03/15] block/nvme: Let nvme_create_queue_pair() fail gracefully Philippe Mathieu-Daudé
2020-08-21  9:44   ` Stefano Garzarella
2020-08-21 13:36     ` Philippe Mathieu-Daudé
2020-08-21 13:54       ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 04/15] block/nvme: Define INDEX macros to ease code review Philippe Mathieu-Daudé
2020-08-21  9:52   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 05/15] block/nvme: Improve error message when IO queue creation failed Philippe Mathieu-Daudé
2020-08-21  9:54   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 06/15] block/nvme: Use common error path in nvme_add_io_queue() Philippe Mathieu-Daudé
2020-08-21  9:55   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 07/15] block/nvme: Rename local variable Philippe Mathieu-Daudé
2020-08-21  9:57   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 08/15] block/nvme: Use union of NvmeIdCtrl / NvmeIdNs structures Philippe Mathieu-Daudé
2020-08-21 10:03   ` Stefano Garzarella
2020-08-21 13:27     ` Philippe Mathieu-Daudé
2020-08-21 13:52       ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 09/15] block/nvme: Replace qemu_try_blockalign0 by qemu_try_blockalign/memset Philippe Mathieu-Daudé
2020-08-21 10:07   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 10/15] block/nvme: Replace qemu_try_blockalign(bs) by qemu_try_memalign(pg_sz) Philippe Mathieu-Daudé
2020-08-21 10:08   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 11/15] block/nvme: Simplify nvme_init_queue() arguments Philippe Mathieu-Daudé
2020-08-21 10:10   ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 12/15] block/nvme: Replace BDRV_POLL_WHILE by AIO_WAIT_WHILE Philippe Mathieu-Daudé
2020-08-21 10:15   ` Stefano Garzarella
2020-08-21 13:15     ` Philippe Mathieu-Daudé [this message]
2020-08-21 13:47       ` Stefano Garzarella
2020-08-20 16:58 ` [PATCH v5 13/15] block/nvme: Simplify nvme_create_queue_pair() arguments Philippe Mathieu-Daudé
2020-08-21 10:20   ` Stefano Garzarella
2020-08-20 16:59 ` [PATCH v5 14/15] block/nvme: Extract nvme_poll_queue() Philippe Mathieu-Daudé
2020-08-21 10:23   ` Stefano Garzarella
2020-08-20 16:59 ` [PATCH v5 15/15] block/nvme: Use an array of EventNotifier Philippe Mathieu-Daudé
2020-08-21 10:29   ` Stefano Garzarella
2020-08-21 13:09     ` Philippe Mathieu-Daudé
2020-08-21 13:46       ` Stefano Garzarella

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=84f6400d-1681-45e5-d271-d2311519dde7@redhat.com \
    --to=philmd@redhat.com \
    --cc=fam@euphon.net \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=sgarzare@redhat.com \
    --cc=stefanha@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;
as well as URLs for NNTP newsgroup(s).