From: Mike Snitzer <snitzer@redhat.com>
To: Jeffle Xu <jefflexu@linux.alibaba.com>
Cc: axboe@kernel.dk, caspar@linux.alibaba.com,
linux-block@vger.kernel.org, joseph.qi@linux.alibaba.com,
dm-devel@redhat.com, mpatocka@redhat.com,
io-uring@vger.kernel.org
Subject: Re: [dm-devel] [PATCH v5 09/12] nvme/pci: don't wait for locked polling queue
Date: Wed, 10 Mar 2021 16:57:27 -0500 [thread overview]
Message-ID: <20210310215727.GA23410@redhat.com> (raw)
In-Reply-To: <20210303115740.127001-10-jefflexu@linux.alibaba.com>
On Wed, Mar 03 2021 at 6:57am -0500,
Jeffle Xu <jefflexu@linux.alibaba.com> wrote:
> There's no sense waiting for the hw queue when it currently has been
> locked by another polling instance. The polling instance currently
> occupying the hw queue will help reap the completion events.
>
> It shall be safe to surrender the hw queue, as long as we could reapply
> for polling later. For Synchronous polling, blk_poll() will reapply for
> polling, since @spin is always True in this case. While For asynchronous
> polling, i.e. io_uring itself will reapply for polling when the previous
> polling returns 0.
>
> Besides, it shall do no harm to the polling performance of mq devices.
>
> Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
You should probably just send this to the linux-nvme list independent of
this patchset.
Mike
> ---
> drivers/nvme/host/pci.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
> index 38b0d694dfc9..150e56ed6d15 100644
> --- a/drivers/nvme/host/pci.c
> +++ b/drivers/nvme/host/pci.c
> @@ -1106,7 +1106,9 @@ static int nvme_poll(struct blk_mq_hw_ctx *hctx)
> if (!nvme_cqe_pending(nvmeq))
> return 0;
>
> - spin_lock(&nvmeq->cq_poll_lock);
> + if (!spin_trylock(&nvmeq->cq_poll_lock))
> + return 0;
> +
> found = nvme_process_cq(nvmeq);
> spin_unlock(&nvmeq->cq_poll_lock);
>
> --
> 2.27.0
>
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
WARNING: multiple messages have this Message-ID (diff)
From: Mike Snitzer <snitzer@redhat.com>
To: Jeffle Xu <jefflexu@linux.alibaba.com>
Cc: axboe@kernel.dk, io-uring@vger.kernel.org, dm-devel@redhat.com,
linux-block@vger.kernel.org, mpatocka@redhat.com,
caspar@linux.alibaba.com, joseph.qi@linux.alibaba.com
Subject: Re: [PATCH v5 09/12] nvme/pci: don't wait for locked polling queue
Date: Wed, 10 Mar 2021 16:57:27 -0500 [thread overview]
Message-ID: <20210310215727.GA23410@redhat.com> (raw)
In-Reply-To: <20210303115740.127001-10-jefflexu@linux.alibaba.com>
On Wed, Mar 03 2021 at 6:57am -0500,
Jeffle Xu <jefflexu@linux.alibaba.com> wrote:
> There's no sense waiting for the hw queue when it currently has been
> locked by another polling instance. The polling instance currently
> occupying the hw queue will help reap the completion events.
>
> It shall be safe to surrender the hw queue, as long as we could reapply
> for polling later. For Synchronous polling, blk_poll() will reapply for
> polling, since @spin is always True in this case. While For asynchronous
> polling, i.e. io_uring itself will reapply for polling when the previous
> polling returns 0.
>
> Besides, it shall do no harm to the polling performance of mq devices.
>
> Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
You should probably just send this to the linux-nvme list independent of
this patchset.
Mike
> ---
> drivers/nvme/host/pci.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
> index 38b0d694dfc9..150e56ed6d15 100644
> --- a/drivers/nvme/host/pci.c
> +++ b/drivers/nvme/host/pci.c
> @@ -1106,7 +1106,9 @@ static int nvme_poll(struct blk_mq_hw_ctx *hctx)
> if (!nvme_cqe_pending(nvmeq))
> return 0;
>
> - spin_lock(&nvmeq->cq_poll_lock);
> + if (!spin_trylock(&nvmeq->cq_poll_lock))
> + return 0;
> +
> found = nvme_process_cq(nvmeq);
> spin_unlock(&nvmeq->cq_poll_lock);
>
> --
> 2.27.0
>
next prev parent reply other threads:[~2021-03-10 21:57 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-03 11:57 [dm-devel] [PATCH v5 00/12] dm: support polling Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 01/12] block: move definition of blk_qc_t to types.h Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 02/12] block: add queue_to_disk() to get gendisk from request_queue Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 03/12] block: add poll method to support bio-based IO polling Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-10 22:01 ` [dm-devel] " Mike Snitzer
2021-03-10 22:01 ` Mike Snitzer
2021-03-11 5:31 ` [dm-devel] " JeffleXu
2021-03-11 5:31 ` JeffleXu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 04/12] block: add poll_capable " Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-10 22:21 ` [dm-devel] " Mike Snitzer
2021-03-10 22:21 ` Mike Snitzer
2021-03-11 5:43 ` [dm-devel] " JeffleXu
2021-03-11 5:43 ` JeffleXu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 05/12] blk-mq: extract one helper function polling hw queue Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 06/12] blk-mq: add iterator for polling hw queues Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 07/12] blk-mq: add one helper function getting hw queue Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 08/12] dm: always return BLK_QC_T_NONE for bio-based device Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 09/12] nvme/pci: don't wait for locked polling queue Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-10 21:57 ` Mike Snitzer [this message]
2021-03-10 21:57 ` Mike Snitzer
2021-03-03 11:57 ` [dm-devel] [PATCH v5 10/12] block: fastpath for bio-based polling Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-10 23:18 ` [dm-devel] " Mike Snitzer
2021-03-10 23:18 ` Mike Snitzer
2021-03-11 6:36 ` [dm-devel] " JeffleXu
2021-03-11 6:36 ` JeffleXu
2021-03-12 2:26 ` JeffleXu
2021-03-12 2:26 ` JeffleXu
2021-03-11 13:56 ` Ming Lei
2021-03-11 13:56 ` Ming Lei
2021-03-12 1:56 ` [dm-devel] " JeffleXu
2021-03-12 1:56 ` JeffleXu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 11/12] block: sub-fastpath " Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
2021-03-03 11:57 ` [dm-devel] [PATCH v5 12/12] dm: support IO polling for bio-based dm device Jeffle Xu
2021-03-03 11:57 ` Jeffle Xu
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=20210310215727.GA23410@redhat.com \
--to=snitzer@redhat.com \
--cc=axboe@kernel.dk \
--cc=caspar@linux.alibaba.com \
--cc=dm-devel@redhat.com \
--cc=io-uring@vger.kernel.org \
--cc=jefflexu@linux.alibaba.com \
--cc=joseph.qi@linux.alibaba.com \
--cc=linux-block@vger.kernel.org \
--cc=mpatocka@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 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.