From: "Darrick J. Wong" <djwong@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: Jens Axboe <axboe@kernel.dk>,
Christian Brauner <brauner@kernel.org>,
Carlos Maiolino <cem@kernel.org>, Qu Wenruo <wqu@suse.com>,
Al Viro <viro@zeniv.linux.org.uk>,
linux-block@vger.kernel.org, linux-xfs@vger.kernel.org,
linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 01/14] block: refactor get_contig_folio_len
Date: Thu, 22 Jan 2026 09:54:09 -0800 [thread overview]
Message-ID: <20260122175409.GY5945@frogsfrogsfrogs> (raw)
In-Reply-To: <20260119074425.4005867-2-hch@lst.de>
On Mon, Jan 19, 2026 at 08:44:08AM +0100, Christoph Hellwig wrote:
> Move all of the logic to find the contigous length inside a folio into
> get_contig_folio_len instead of keeping some of it in the caller.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
I like that this change makes it easier for me to guess what
get_contig_folio_len does just by looking at the arguments.
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
--D
> ---
> block/bio.c | 62 +++++++++++++++++++++++------------------------------
> 1 file changed, 27 insertions(+), 35 deletions(-)
>
> diff --git a/block/bio.c b/block/bio.c
> index 2359c0723b88..18dfdaba0c73 100644
> --- a/block/bio.c
> +++ b/block/bio.c
> @@ -1172,33 +1172,35 @@ void bio_iov_bvec_set(struct bio *bio, const struct iov_iter *iter)
> bio_set_flag(bio, BIO_CLONED);
> }
>
> -static unsigned int get_contig_folio_len(unsigned int *num_pages,
> - struct page **pages, unsigned int i,
> - struct folio *folio, size_t left,
> +static unsigned int get_contig_folio_len(struct page **pages,
> + unsigned int *num_pages, size_t left,
> size_t offset)
> {
> - size_t bytes = left;
> - size_t contig_sz = min_t(size_t, PAGE_SIZE - offset, bytes);
> - unsigned int j;
> + struct folio *folio = page_folio(pages[0]);
> + size_t contig_sz = min_t(size_t, PAGE_SIZE - offset, left);
> + unsigned int max_pages, i;
> + size_t folio_offset, len;
> +
> + folio_offset = PAGE_SIZE * folio_page_idx(folio, pages[0]) + offset;
> + len = min(folio_size(folio) - folio_offset, left);
>
> /*
> - * We might COW a single page in the middle of
> - * a large folio, so we have to check that all
> - * pages belong to the same folio.
> + * We might COW a single page in the middle of a large folio, so we have
> + * to check that all pages belong to the same folio.
> */
> - bytes -= contig_sz;
> - for (j = i + 1; j < i + *num_pages; j++) {
> - size_t next = min_t(size_t, PAGE_SIZE, bytes);
> + left -= contig_sz;
> + max_pages = DIV_ROUND_UP(offset + len, PAGE_SIZE);
> + for (i = 1; i < max_pages; i++) {
> + size_t next = min_t(size_t, PAGE_SIZE, left);
>
> - if (page_folio(pages[j]) != folio ||
> - pages[j] != pages[j - 1] + 1) {
> + if (page_folio(pages[i]) != folio ||
> + pages[i] != pages[i - 1] + 1)
> break;
> - }
> contig_sz += next;
> - bytes -= next;
> + left -= next;
> }
> - *num_pages = j - i;
>
> + *num_pages = i;
> return contig_sz;
> }
>
> @@ -1222,8 +1224,8 @@ static int __bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter)
> struct bio_vec *bv = bio->bi_io_vec + bio->bi_vcnt;
> struct page **pages = (struct page **)bv;
> ssize_t size;
> - unsigned int num_pages, i = 0;
> - size_t offset, folio_offset, left, len;
> + unsigned int i = 0;
> + size_t offset, left, len;
> int ret = 0;
>
> /*
> @@ -1244,23 +1246,12 @@ static int __bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter)
> return size ? size : -EFAULT;
>
> nr_pages = DIV_ROUND_UP(offset + size, PAGE_SIZE);
> - for (left = size, i = 0; left > 0; left -= len, i += num_pages) {
> - struct page *page = pages[i];
> - struct folio *folio = page_folio(page);
> + for (left = size; left > 0; left -= len) {
> unsigned int old_vcnt = bio->bi_vcnt;
> + unsigned int nr_to_add;
>
> - folio_offset = ((size_t)folio_page_idx(folio, page) <<
> - PAGE_SHIFT) + offset;
> -
> - len = min(folio_size(folio) - folio_offset, left);
> -
> - num_pages = DIV_ROUND_UP(offset + len, PAGE_SIZE);
> -
> - if (num_pages > 1)
> - len = get_contig_folio_len(&num_pages, pages, i,
> - folio, left, offset);
> -
> - if (!bio_add_folio(bio, folio, len, folio_offset)) {
> + len = get_contig_folio_len(&pages[i], &nr_to_add, left, offset);
> + if (!bio_add_page(bio, pages[i], len, offset)) {
> WARN_ON_ONCE(1);
> ret = -EINVAL;
> goto out;
> @@ -1275,8 +1266,9 @@ static int __bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter)
> * single pin per page.
> */
> if (offset && bio->bi_vcnt == old_vcnt)
> - unpin_user_folio(folio, 1);
> + unpin_user_folio(page_folio(pages[i]), 1);
> }
> + i += nr_to_add;
> offset = 0;
> }
>
> --
> 2.47.3
>
>
next prev parent reply other threads:[~2026-01-22 17:54 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20260123121444epcas5p4e729259011e031a28be8379ea3b9b749@epcas5p4.samsung.com>
2026-01-19 7:44 ` bounce buffer direct I/O when stable pages are required v2 Christoph Hellwig
2026-01-19 7:44 ` [PATCH 01/14] block: refactor get_contig_folio_len Christoph Hellwig
2026-01-22 11:00 ` Johannes Thumshirn
2026-01-22 17:54 ` Darrick J. Wong [this message]
2026-01-23 8:32 ` Damien Le Moal
2026-01-23 8:35 ` Christoph Hellwig
2026-01-23 8:44 ` Damien Le Moal
2026-01-23 8:45 ` Damien Le Moal
2026-01-23 12:14 ` Anuj Gupta
2026-01-19 7:44 ` [PATCH 02/14] block: open code bio_add_page and fix handling of mismatching P2P ranges Christoph Hellwig
2026-01-22 11:04 ` Johannes Thumshirn
2026-01-22 17:59 ` Darrick J. Wong
2026-01-23 5:43 ` Christoph Hellwig
2026-01-23 7:05 ` Darrick J. Wong
2026-01-23 8:35 ` Damien Le Moal
2026-01-23 12:15 ` Anuj Gupta
2026-01-19 7:44 ` [PATCH 03/14] iov_iter: extract a iov_iter_extract_bvecs helper from bio code Christoph Hellwig
2026-01-22 17:47 ` Darrick J. Wong
2026-01-23 5:44 ` Christoph Hellwig
2026-01-23 7:09 ` Darrick J. Wong
2026-01-23 7:14 ` Christoph Hellwig
2026-01-23 11:37 ` David Howells
2026-01-23 13:58 ` Christoph Hellwig
2026-01-23 14:57 ` David Howells
2026-01-26 17:36 ` Matthew Wilcox
2026-01-27 5:13 ` Christoph Hellwig
2026-01-27 5:44 ` Matthew Wilcox
2026-01-27 5:47 ` Christoph Hellwig
2026-02-03 8:20 ` Askar Safin
2026-02-03 10:28 ` Askar Safin
2026-02-03 16:32 ` Christoph Hellwig
2026-01-19 7:44 ` [PATCH 04/14] block: remove bio_release_page Christoph Hellwig
2026-01-22 11:14 ` Johannes Thumshirn
2026-01-22 17:26 ` Darrick J. Wong
2026-01-23 8:43 ` Damien Le Moal
2026-01-23 12:17 ` Anuj Gupta
2026-01-19 7:44 ` [PATCH 05/14] block: add helpers to bounce buffer an iov_iter into bios Christoph Hellwig
2026-01-22 13:05 ` Johannes Thumshirn
2026-01-22 17:25 ` Darrick J. Wong
2026-01-23 5:51 ` Christoph Hellwig
2026-01-23 7:11 ` Darrick J. Wong
2026-01-23 7:16 ` Christoph Hellwig
2026-01-23 8:52 ` Damien Le Moal
2026-01-23 12:20 ` Anuj Gupta
2026-01-19 7:44 ` [PATCH 06/14] iomap: fix submission side handling of completion side errors Christoph Hellwig
2026-01-19 17:40 ` Darrick J. Wong
2026-01-23 8:54 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 07/14] iomap: simplify iomap_dio_bio_iter Christoph Hellwig
2026-01-19 17:43 ` Darrick J. Wong
2026-01-23 8:55 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 08/14] iomap: split out the per-bio logic from iomap_dio_bio_iter Christoph Hellwig
2026-01-23 8:57 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 09/14] iomap: share code between iomap_dio_bio_end_io and iomap_finish_ioend_direct Christoph Hellwig
2026-01-23 8:58 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 10/14] iomap: free the bio before completing the dio Christoph Hellwig
2026-01-19 17:43 ` Darrick J. Wong
2026-01-23 8:59 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 11/14] iomap: rename IOMAP_DIO_DIRTY to IOMAP_DIO_USER_BACKED Christoph Hellwig
2026-01-23 9:00 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 12/14] iomap: support ioends for direct reads Christoph Hellwig
2026-01-23 9:02 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 13/14] iomap: add a flag to bounce buffer direct I/O Christoph Hellwig
2026-01-23 9:05 ` Damien Le Moal
2026-01-19 7:44 ` [PATCH 14/14] xfs: use bounce buffering direct I/O when the device requires stable pages Christoph Hellwig
2026-01-19 17:45 ` Darrick J. Wong
2026-01-23 9:08 ` Damien Le Moal
2026-01-23 12:10 ` bounce buffer direct I/O when stable pages are required v2 Anuj Gupta
2026-01-23 14:01 ` Christoph Hellwig
2026-01-23 14:09 ` Keith Busch
2026-01-23 12:24 ` Christian Brauner
2026-01-23 14:10 ` block or iomap tree, was: " Christoph Hellwig
2026-01-27 10:31 ` Christian Brauner
2026-01-27 12:50 ` Christoph Hellwig
2026-01-14 7:40 bounce buffer direct I/O when stable pages are required Christoph Hellwig
2026-01-14 7:40 ` [PATCH 01/14] block: refactor get_contig_folio_len Christoph Hellwig
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=20260122175409.GY5945@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=axboe@kernel.dk \
--cc=brauner@kernel.org \
--cc=cem@kernel.org \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
--cc=wqu@suse.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