From: Hannes Reinecke <hare@suse.de>
To: Johannes Thumshirn <johannes.thumshirn@wdc.com>,
Jens Axboe <axboe@kernel.dk>
Cc: Christoph Hellwig <hch@infradead.org>,
linux-block <linux-block@vger.kernel.org>,
Damien Le Moal <Damien.LeMoal@wdc.com>,
Keith Busch <kbusch@kernel.org>,
"linux-scsi @ vger . kernel . org" <linux-scsi@vger.kernel.org>,
"Martin K . Petersen" <martin.petersen@oracle.com>,
"linux-fsdevel @ vger . kernel . org"
<linux-fsdevel@vger.kernel.org>, Christoph Hellwig <hch@lst.de>,
Daniel Wagner <dwagner@suse.de>
Subject: Re: [PATCH v8 03/11] block: rename __bio_add_pc_page to bio_add_hw_page
Date: Mon, 27 Apr 2020 14:24:46 +0200 [thread overview]
Message-ID: <2e0a4175-4f06-0cf7-159c-b496538f5618@suse.de> (raw)
In-Reply-To: <20200427113153.31246-4-johannes.thumshirn@wdc.com>
On 4/27/20 1:31 PM, Johannes Thumshirn wrote:
> From: Christoph Hellwig <hch@lst.de>
>
> Rename __bio_add_pc_page() to bio_add_hw_page() and explicitly pass in a
> max_sectors argument.
>
> This max_sectors argument can be used to specify constraints from the
> hardware.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> [ jth: rebased and made public for blk-map.c ]
> Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
> Reviewed-by: Daniel Wagner <dwagner@suse.de>
> ---
> block/bio.c | 60 +++++++++++++++++++++++++++----------------------
> block/blk-map.c | 5 +++--
> block/blk.h | 4 ++--
> 3 files changed, 38 insertions(+), 31 deletions(-)
>
> diff --git a/block/bio.c b/block/bio.c
> index 21cbaa6a1c20..0f0e337e46b4 100644
> --- a/block/bio.c
> +++ b/block/bio.c
> @@ -748,9 +748,14 @@ static inline bool page_is_mergeable(const struct bio_vec *bv,
> return true;
> }
>
> -static bool bio_try_merge_pc_page(struct request_queue *q, struct bio *bio,
> - struct page *page, unsigned len, unsigned offset,
> - bool *same_page)
> +/*
> + * Try to merge a page into a segment, while obeying the hardware segment
> + * size limit. This is not for normal read/write bios, but for passthrough
> + * or Zone Append operations that we can't split.
> + */
> +static bool bio_try_merge_hw_seg(struct request_queue *q, struct bio *bio,
> + struct page *page, unsigned len,
> + unsigned offset, bool *same_page)
> {
> struct bio_vec *bv = &bio->bi_io_vec[bio->bi_vcnt - 1];
> unsigned long mask = queue_segment_boundary(q);
> @@ -764,39 +769,24 @@ static bool bio_try_merge_pc_page(struct request_queue *q, struct bio *bio,
> return __bio_try_merge_page(bio, page, len, offset, same_page);
> }
>
> -/**
> - * __bio_add_pc_page - attempt to add page to passthrough bio
> - * @q: the target queue
> - * @bio: destination bio
> - * @page: page to add
> - * @len: vec entry length
> - * @offset: vec entry offset
> - * @same_page: return if the merge happen inside the same page
> - *
> - * Attempt to add a page to the bio_vec maplist. This can fail for a
> - * number of reasons, such as the bio being full or target block device
> - * limitations. The target block device must allow bio's up to PAGE_SIZE,
> - * so it is always possible to add a single page to an empty bio.
> - *
> - * This should only be used by passthrough bios.
> +/*
> + * Add a page to a bio while respecting the hardware max_sectors, max_segment
> + * and gap limitations.
> */
Why did you drop to kerneldoc ?
If that's an internal function why isn't is marked as 'static'?
And if it's an exported one it certainly would warrant a kerneldoc
style comment ...
> -int __bio_add_pc_page(struct request_queue *q, struct bio *bio,
> +int bio_add_hw_page(struct request_queue *q, struct bio *bio,
> struct page *page, unsigned int len, unsigned int offset,
> - bool *same_page)
> + unsigned int max_sectors, bool *same_page)
> {
> struct bio_vec *bvec;
>
> - /*
> - * cloned bio must not modify vec list
> - */
> - if (unlikely(bio_flagged(bio, BIO_CLONED)))
> + if (WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED)))
> return 0;
>
> - if (((bio->bi_iter.bi_size + len) >> 9) > queue_max_hw_sectors(q))
> + if (((bio->bi_iter.bi_size + len) >> 9) > max_sectors)
> return 0;
>
> if (bio->bi_vcnt > 0) {
> - if (bio_try_merge_pc_page(q, bio, page, len, offset, same_page))
> + if (bio_try_merge_hw_seg(q, bio, page, len, offset, same_page))
> return len;
>
> /*
> @@ -823,11 +813,27 @@ int __bio_add_pc_page(struct request_queue *q, struct bio *bio,
> return len;
> }
>
> +/**
> + * bio_add_pc_page - attempt to add page to passthrough bio
> + * @q: the target queue
> + * @bio: destination bio
> + * @page: page to add
> + * @len: vec entry length
> + * @offset: vec entry offset
> + *
> + * Attempt to add a page to the bio_vec maplist. This can fail for a
> + * number of reasons, such as the bio being full or target block device
> + * limitations. The target block device must allow bio's up to PAGE_SIZE,
> + * so it is always possible to add a single page to an empty bio.
> + *
> + * This should only be used by passthrough bios.
> + */
> int bio_add_pc_page(struct request_queue *q, struct bio *bio,
> struct page *page, unsigned int len, unsigned int offset)
> {
> bool same_page = false;
> - return __bio_add_pc_page(q, bio, page, len, offset, &same_page);
> + return bio_add_hw_page(q, bio, page, len, offset,
> + queue_max_hw_sectors(q), &same_page);
> }
> EXPORT_SYMBOL(bio_add_pc_page);
>
> diff --git a/block/blk-map.c b/block/blk-map.c
> index b6fa343fea9f..e3e4ac48db45 100644
> --- a/block/blk-map.c
> +++ b/block/blk-map.c
> @@ -257,6 +257,7 @@ static struct bio *bio_copy_user_iov(struct request_queue *q,
> static struct bio *bio_map_user_iov(struct request_queue *q,
> struct iov_iter *iter, gfp_t gfp_mask)
> {
> + unsigned int max_sectors = queue_max_hw_sectors(q);
> int j;
> struct bio *bio;
> int ret;
> @@ -294,8 +295,8 @@ static struct bio *bio_map_user_iov(struct request_queue *q,
> if (n > bytes)
> n = bytes;
>
> - if (!__bio_add_pc_page(q, bio, page, n, offs,
> - &same_page)) {
> + if (!bio_add_hw_page(q, bio, page, n, offs,
> + max_sectors, &same_page)) {
> if (same_page)
> put_page(page);
> break;
> diff --git a/block/blk.h b/block/blk.h
> index 73bd3b1c6938..1ae3279df712 100644
> --- a/block/blk.h
> +++ b/block/blk.h
> @@ -453,8 +453,8 @@ static inline void part_nr_sects_write(struct hd_struct *part, sector_t size)
>
> struct request_queue *__blk_alloc_queue(int node_id);
>
> -int __bio_add_pc_page(struct request_queue *q, struct bio *bio,
> +int bio_add_hw_page(struct request_queue *q, struct bio *bio,
> struct page *page, unsigned int len, unsigned int offset,
> - bool *same_page);
> + unsigned int max_sectors, bool *same_page);
>
> #endif /* BLK_INTERNAL_H */
>
Cheers,
Hannes
--
Dr. Hannes Reinecke Teamlead Storage & Networking
hare@suse.de +49 911 74053 688
SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg
HRB 36809 (AG Nürnberg), Geschäftsführer: Felix Imendörffer
next prev parent reply other threads:[~2020-04-27 12:24 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-27 11:31 [PATCH v8 00/11] Introduce Zone Append for writing to zoned block devices Johannes Thumshirn
2020-04-27 11:31 ` [PATCH v8 01/11] scsi: free sgtables in case command setup fails Johannes Thumshirn
2020-04-27 11:52 ` Hannes Reinecke
2020-04-27 11:31 ` [PATCH v8 02/11] block: provide fallbacks for blk_queue_zone_is_seq and blk_queue_zone_no Johannes Thumshirn
2020-04-27 11:53 ` Hannes Reinecke
2020-04-27 11:31 ` [PATCH v8 03/11] block: rename __bio_add_pc_page to bio_add_hw_page Johannes Thumshirn
2020-04-27 12:24 ` Hannes Reinecke [this message]
2020-04-27 11:31 ` [PATCH v8 04/11] block: Introduce REQ_OP_ZONE_APPEND Johannes Thumshirn
2020-04-27 12:30 ` Hannes Reinecke
2020-04-28 5:20 ` Bart Van Assche
2020-04-28 5:42 ` Damien Le Moal
2020-04-27 11:31 ` [PATCH v8 05/11] block: introduce blk_req_zone_write_trylock Johannes Thumshirn
2020-04-27 12:52 ` Hannes Reinecke
2020-04-27 11:31 ` [PATCH v8 06/11] block: Modify revalidate zones Johannes Thumshirn
2020-04-27 12:52 ` Hannes Reinecke
2020-04-27 11:31 ` [PATCH v8 07/11] scsi: sd_zbc: factor out sanity checks for zoned commands Johannes Thumshirn
2020-04-27 12:53 ` Hannes Reinecke
2020-04-27 11:31 ` [PATCH v8 08/11] scsi: sd_zbc: emulate ZONE_APPEND commands Johannes Thumshirn
2020-04-27 11:31 ` [PATCH v8 09/11] null_blk: Support REQ_OP_ZONE_APPEND Johannes Thumshirn
2020-04-27 11:31 ` [PATCH v8 10/11] block: export bio_release_pages and bio_iov_iter_get_pages Johannes Thumshirn
2020-04-27 11:31 ` [PATCH v8 11/11] zonefs: use REQ_OP_ZONE_APPEND for sync DIO Johannes Thumshirn
2020-04-27 12:27 ` 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=2e0a4175-4f06-0cf7-159c-b496538f5618@suse.de \
--to=hare@suse.de \
--cc=Damien.LeMoal@wdc.com \
--cc=axboe@kernel.dk \
--cc=dwagner@suse.de \
--cc=hch@infradead.org \
--cc=hch@lst.de \
--cc=johannes.thumshirn@wdc.com \
--cc=kbusch@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.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).