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 03/12] block: add poll method to support bio-based IO polling
Date: Wed, 10 Mar 2021 17:01:22 -0500 [thread overview]
Message-ID: <20210310220122.GB23410@redhat.com> (raw)
In-Reply-To: <20210303115740.127001-4-jefflexu@linux.alibaba.com>
On Wed, Mar 03 2021 at 6:57am -0500,
Jeffle Xu <jefflexu@linux.alibaba.com> wrote:
> ->poll_fn was introduced in commit ea435e1b9392 ("block: add a poll_fn
> callback to struct request_queue") to support bio-based queues such as
> nvme multipath, but was later removed in commit 529262d56dbe ("block:
> remove ->poll_fn").
>
> Given commit c62b37d96b6e ("block: move ->make_request_fn to struct
> block_device_operations") restore the possibility of bio-based IO
> polling support by adding an ->poll method to gendisk->fops.
>
> Make blk_mq_poll() specific to blk-mq, while blk_bio_poll() is
> originally a copy from blk_mq_poll(), and is specific to bio-based
> polling. Currently hybrid polling is not supported by bio-based polling.
>
> Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
> ---
> block/blk-core.c | 58 ++++++++++++++++++++++++++++++++++++++++++
> block/blk-mq.c | 22 +---------------
> include/linux/blk-mq.h | 1 +
> include/linux/blkdev.h | 1 +
> 4 files changed, 61 insertions(+), 21 deletions(-)
>
> diff --git a/block/blk-core.c b/block/blk-core.c
> index fc60ff208497..6d7d53030d7c 100644
> --- a/block/blk-core.c
> +++ b/block/blk-core.c
> @@ -1119,6 +1119,64 @@ blk_qc_t submit_bio(struct bio *bio)
> }
> EXPORT_SYMBOL(submit_bio);
>
> +
Minor nit: Extra empty new line here? ^
Otherwise, looks good (I like the end result of blk-mq and bio-based
polling being decoupled like hch suggested).
Reviewed-by: Mike Snitzer <snitzer@redhat.com>
> +static int blk_bio_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> +{
> + long state;
> + struct gendisk *disk = queue_to_disk(q);
> +
> + state = current->state;
> + do {
> + int ret;
> +
> + ret = disk->fops->poll(q, cookie);
> + if (ret > 0) {
> + __set_current_state(TASK_RUNNING);
> + return ret;
> + }
> +
> + if (signal_pending_state(state, current))
> + __set_current_state(TASK_RUNNING);
> +
> + if (current->state == TASK_RUNNING)
> + return 1;
> + if (ret < 0 || !spin)
> + break;
> + cpu_relax();
> + } while (!need_resched());
> +
> + __set_current_state(TASK_RUNNING);
> + return 0;
> +}
> +
> +/**
> + * blk_poll - poll for IO completions
> + * @q: the queue
> + * @cookie: cookie passed back at IO submission time
> + * @spin: whether to spin for completions
> + *
> + * Description:
> + * Poll for completions on the passed in queue. Returns number of
> + * completed entries found. If @spin is true, then blk_poll will continue
> + * looping until at least one completion is found, unless the task is
> + * otherwise marked running (or we need to reschedule).
> + */
> +int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> +{
> + if (!blk_qc_t_valid(cookie) ||
> + !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
> + return 0;
> +
> + if (current->plug)
> + blk_flush_plug_list(current->plug, false);
> +
> + if (queue_is_mq(q))
> + return blk_mq_poll(q, cookie, spin);
> + else
> + return blk_bio_poll(q, cookie, spin);
> +}
> +EXPORT_SYMBOL_GPL(blk_poll);
> +
> /**
> * blk_cloned_rq_check_limits - Helper function to check a cloned request
> * for the new queue limits
> diff --git a/block/blk-mq.c b/block/blk-mq.c
> index d4d7c1caa439..214fa30b460a 100644
> --- a/block/blk-mq.c
> +++ b/block/blk-mq.c
> @@ -3852,30 +3852,11 @@ static bool blk_mq_poll_hybrid(struct request_queue *q,
> return blk_mq_poll_hybrid_sleep(q, rq);
> }
>
> -/**
> - * blk_poll - poll for IO completions
> - * @q: the queue
> - * @cookie: cookie passed back at IO submission time
> - * @spin: whether to spin for completions
> - *
> - * Description:
> - * Poll for completions on the passed in queue. Returns number of
> - * completed entries found. If @spin is true, then blk_poll will continue
> - * looping until at least one completion is found, unless the task is
> - * otherwise marked running (or we need to reschedule).
> - */
> -int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> +int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> {
> struct blk_mq_hw_ctx *hctx;
> long state;
>
> - if (!blk_qc_t_valid(cookie) ||
> - !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
> - return 0;
> -
> - if (current->plug)
> - blk_flush_plug_list(current->plug, false);
> -
> hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
>
> /*
> @@ -3917,7 +3898,6 @@ int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> __set_current_state(TASK_RUNNING);
> return 0;
> }
> -EXPORT_SYMBOL_GPL(blk_poll);
>
> unsigned int blk_mq_rq_cpu(struct request *rq)
> {
> diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h
> index 2c473c9b8990..6a7b693b9917 100644
> --- a/include/linux/blk-mq.h
> +++ b/include/linux/blk-mq.h
> @@ -615,6 +615,7 @@ static inline void blk_rq_bio_prep(struct request *rq, struct bio *bio,
> }
>
> blk_qc_t blk_mq_submit_bio(struct bio *bio);
> +int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, bool spin);
> void blk_mq_hctx_set_fq_lock_class(struct blk_mq_hw_ctx *hctx,
> struct lock_class_key *key);
>
> diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
> index b81a9fe015ab..9dc83c30e7bc 100644
> --- a/include/linux/blkdev.h
> +++ b/include/linux/blkdev.h
> @@ -1866,6 +1866,7 @@ static inline void blk_ksm_unregister(struct request_queue *q) { }
>
> struct block_device_operations {
> blk_qc_t (*submit_bio) (struct bio *bio);
> + int (*poll)(struct request_queue *q, blk_qc_t cookie);
> int (*open) (struct block_device *, fmode_t);
> void (*release) (struct gendisk *, fmode_t);
> int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int);
> --
> 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 03/12] block: add poll method to support bio-based IO polling
Date: Wed, 10 Mar 2021 17:01:22 -0500 [thread overview]
Message-ID: <20210310220122.GB23410@redhat.com> (raw)
In-Reply-To: <20210303115740.127001-4-jefflexu@linux.alibaba.com>
On Wed, Mar 03 2021 at 6:57am -0500,
Jeffle Xu <jefflexu@linux.alibaba.com> wrote:
> ->poll_fn was introduced in commit ea435e1b9392 ("block: add a poll_fn
> callback to struct request_queue") to support bio-based queues such as
> nvme multipath, but was later removed in commit 529262d56dbe ("block:
> remove ->poll_fn").
>
> Given commit c62b37d96b6e ("block: move ->make_request_fn to struct
> block_device_operations") restore the possibility of bio-based IO
> polling support by adding an ->poll method to gendisk->fops.
>
> Make blk_mq_poll() specific to blk-mq, while blk_bio_poll() is
> originally a copy from blk_mq_poll(), and is specific to bio-based
> polling. Currently hybrid polling is not supported by bio-based polling.
>
> Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
> ---
> block/blk-core.c | 58 ++++++++++++++++++++++++++++++++++++++++++
> block/blk-mq.c | 22 +---------------
> include/linux/blk-mq.h | 1 +
> include/linux/blkdev.h | 1 +
> 4 files changed, 61 insertions(+), 21 deletions(-)
>
> diff --git a/block/blk-core.c b/block/blk-core.c
> index fc60ff208497..6d7d53030d7c 100644
> --- a/block/blk-core.c
> +++ b/block/blk-core.c
> @@ -1119,6 +1119,64 @@ blk_qc_t submit_bio(struct bio *bio)
> }
> EXPORT_SYMBOL(submit_bio);
>
> +
Minor nit: Extra empty new line here? ^
Otherwise, looks good (I like the end result of blk-mq and bio-based
polling being decoupled like hch suggested).
Reviewed-by: Mike Snitzer <snitzer@redhat.com>
> +static int blk_bio_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> +{
> + long state;
> + struct gendisk *disk = queue_to_disk(q);
> +
> + state = current->state;
> + do {
> + int ret;
> +
> + ret = disk->fops->poll(q, cookie);
> + if (ret > 0) {
> + __set_current_state(TASK_RUNNING);
> + return ret;
> + }
> +
> + if (signal_pending_state(state, current))
> + __set_current_state(TASK_RUNNING);
> +
> + if (current->state == TASK_RUNNING)
> + return 1;
> + if (ret < 0 || !spin)
> + break;
> + cpu_relax();
> + } while (!need_resched());
> +
> + __set_current_state(TASK_RUNNING);
> + return 0;
> +}
> +
> +/**
> + * blk_poll - poll for IO completions
> + * @q: the queue
> + * @cookie: cookie passed back at IO submission time
> + * @spin: whether to spin for completions
> + *
> + * Description:
> + * Poll for completions on the passed in queue. Returns number of
> + * completed entries found. If @spin is true, then blk_poll will continue
> + * looping until at least one completion is found, unless the task is
> + * otherwise marked running (or we need to reschedule).
> + */
> +int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> +{
> + if (!blk_qc_t_valid(cookie) ||
> + !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
> + return 0;
> +
> + if (current->plug)
> + blk_flush_plug_list(current->plug, false);
> +
> + if (queue_is_mq(q))
> + return blk_mq_poll(q, cookie, spin);
> + else
> + return blk_bio_poll(q, cookie, spin);
> +}
> +EXPORT_SYMBOL_GPL(blk_poll);
> +
> /**
> * blk_cloned_rq_check_limits - Helper function to check a cloned request
> * for the new queue limits
> diff --git a/block/blk-mq.c b/block/blk-mq.c
> index d4d7c1caa439..214fa30b460a 100644
> --- a/block/blk-mq.c
> +++ b/block/blk-mq.c
> @@ -3852,30 +3852,11 @@ static bool blk_mq_poll_hybrid(struct request_queue *q,
> return blk_mq_poll_hybrid_sleep(q, rq);
> }
>
> -/**
> - * blk_poll - poll for IO completions
> - * @q: the queue
> - * @cookie: cookie passed back at IO submission time
> - * @spin: whether to spin for completions
> - *
> - * Description:
> - * Poll for completions on the passed in queue. Returns number of
> - * completed entries found. If @spin is true, then blk_poll will continue
> - * looping until at least one completion is found, unless the task is
> - * otherwise marked running (or we need to reschedule).
> - */
> -int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> +int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> {
> struct blk_mq_hw_ctx *hctx;
> long state;
>
> - if (!blk_qc_t_valid(cookie) ||
> - !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
> - return 0;
> -
> - if (current->plug)
> - blk_flush_plug_list(current->plug, false);
> -
> hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
>
> /*
> @@ -3917,7 +3898,6 @@ int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
> __set_current_state(TASK_RUNNING);
> return 0;
> }
> -EXPORT_SYMBOL_GPL(blk_poll);
>
> unsigned int blk_mq_rq_cpu(struct request *rq)
> {
> diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h
> index 2c473c9b8990..6a7b693b9917 100644
> --- a/include/linux/blk-mq.h
> +++ b/include/linux/blk-mq.h
> @@ -615,6 +615,7 @@ static inline void blk_rq_bio_prep(struct request *rq, struct bio *bio,
> }
>
> blk_qc_t blk_mq_submit_bio(struct bio *bio);
> +int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, bool spin);
> void blk_mq_hctx_set_fq_lock_class(struct blk_mq_hw_ctx *hctx,
> struct lock_class_key *key);
>
> diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
> index b81a9fe015ab..9dc83c30e7bc 100644
> --- a/include/linux/blkdev.h
> +++ b/include/linux/blkdev.h
> @@ -1866,6 +1866,7 @@ static inline void blk_ksm_unregister(struct request_queue *q) { }
>
> struct block_device_operations {
> blk_qc_t (*submit_bio) (struct bio *bio);
> + int (*poll)(struct request_queue *q, blk_qc_t cookie);
> int (*open) (struct block_device *, fmode_t);
> void (*release) (struct gendisk *, fmode_t);
> int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int);
> --
> 2.27.0
>
next prev parent reply other threads:[~2021-03-10 22:01 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 ` Mike Snitzer [this message]
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 ` [dm-devel] " Mike Snitzer
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=20210310220122.GB23410@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.