[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZwT_OwN9MOZSEseE@infradead.org>
Date: Tue, 8 Oct 2024 02:45:31 -0700
From: Christoph Hellwig <hch@...radead.org>
To: Goldwyn Rodrigues <rgoldwyn@...e.de>
Cc: linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
Goldwyn Rodrigues <rgoldwyn@...e.com>
Subject: Re: [PATCH 03/12] iomap: add bioset in iomap_read_folio_ops for
filesystems to use own bioset
> !bio_add_folio(ctx->bio, folio, plen, poff)) {
> + struct bio_set *bioset;
> gfp_t gfp = mapping_gfp_constraint(folio->mapping, GFP_KERNEL);
> gfp_t orig_gfp = gfp;
> unsigned int nr_vecs = DIV_ROUND_UP(length, PAGE_SIZE);
Nit: I try to keep variables just declared and not initialized after
those initialized at declaration time.
> +
> + if (ctx->ops && ctx->ops->bio_set)
> + bioset = ctx->ops->bio_set;
> + else
> + bioset = &fs_bio_set;
> +
> + ctx->bio = bio_alloc_bioset(iomap->bdev, bio_max_segs(nr_vecs),
> + REQ_OP_READ, gfp, bioset);
> +
But it would be nice to move this logic into a helper, similar to what
is done in the direct I/O code. That should robably include
picking the gfp flags from the ctx.
Powered by blists - more mailing lists