<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body>
<div class="moz-cite-prefix">On 1/27/21 11:21 PM, Damien Le Moal wrote:<br>
</div>
<blockquote type="cite" cite="mid:BL0PR04MB6514C554B4AC96866BC1B16FE7BA9@BL0PR04MB6514.namprd04.prod.outlook.com">
<pre class="moz-quote-pre" wrap="">On 2021/01/28 16:12, Chaitanya Kulkarni wrote:
</pre>
<blockquote type="cite" style="color: #007cff;">
<pre class="moz-quote-pre" wrap="">Introduce bio_new() helper and use it in blk-lib.c to allocate and
initialize various non-optional or semi-optional members of the bio
along with bio allocation done with bio_alloc(). Here we also calmp the
max_bvecs for bio with BIO_MAX_PAGES before we pass to bio_alloc().

Signed-off-by: Chaitanya Kulkarni <a class="moz-txt-link-rfc2396E" href="mailto:chaitanya.kulkarni@wdc.com" moz-do-not-send="true">&lt;chaitanya.kulkarni@wdc.com&gt;</a>
---
 block/blk-lib.c     |  6 +-----
 include/linux/bio.h | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+), 5 deletions(-)

diff --git a/block/blk-lib.c b/block/blk-lib.c
index fb486a0bdb58..ec29415f00dd 100644
--- a/block/blk-lib.c
+++ b/block/blk-lib.c
@@ -14,17 +14,13 @@ struct bio *blk_next_bio(struct bio *bio, struct block_device *bdev,
                         sector_t sect, unsigned op, unsigned opf,
                         unsigned int nr_pages, gfp_t gfp)
 {
-        struct bio *new = bio_alloc(gfp, nr_pages);
+        struct bio *new = bio_new(bdev, sect, op, opf, gfp, nr_pages);
 
         if (bio) {
                 bio_chain(bio, new);
                 submit_bio(bio);
         }
 
-        new-&gt;bi_iter.bi_sector = sect;
-        bio_set_dev(new, bdev);
-        bio_set_op_attrs(new, op, opf);
-
         return new;
 }
 
diff --git a/include/linux/bio.h b/include/linux/bio.h
index c74857cf1252..2a09ba100546 100644
--- a/include/linux/bio.h
+++ b/include/linux/bio.h
@@ -826,5 +826,30 @@ static inline void bio_set_polled(struct bio *bio, struct kiocb *kiocb)
         if (!is_sync_kiocb(kiocb))
                 bio-&gt;bi_opf |= REQ_NOWAIT;
 }
+/**
+ * bio_new -        allcate and initialize new bio
+ * @bdev:        blockdev to issue discard for
+ * @sector:        start sector
+ * @op:                REQ_OP_XXX from enum req_opf
+ * @op_flags:        REQ_XXX from enum req_flag_bits
+ * @max_bvecs:        maximum bvec to be allocated for this bio
+ * @gfp_mask:        memory allocation flags (for bio_alloc)
+ *
+ * Description:
+ *    Allocates, initializes common members, and returns a new bio.
+ */
+static inline struct bio *bio_new(struct block_device *bdev, sector_t sector,
+                                  unsigned int op, unsigned int op_flags,
+                                  unsigned int max_bvecs, gfp_t gfp_mask)
+{
+        unsigned nr_bvec = clamp_t(unsigned int, max_bvecs, 0, BIO_MAX_PAGES);
+        struct bio *bio = bio_alloc(gfp_mask, nr_bvec);
</pre>
</blockquote>
<pre class="moz-quote-pre" wrap="">I think that depending on the gfp_mask passed, bio can be NULL. So this should
be checked.
</pre>
</blockquote>
true, I'll add that check.<br>
<blockquote type="cite" cite="mid:BL0PR04MB6514C554B4AC96866BC1B16FE7BA9@BL0PR04MB6514.namprd04.prod.outlook.com">
<pre class="moz-quote-pre" wrap="">
</pre>
<blockquote type="cite" style="color: #007cff;">
<pre class="moz-quote-pre" wrap="">+
+        bio_set_dev(bio, bdev);
+        bio-&gt;bi_iter.bi_sector = sector;
+        bio_set_op_attrs(bio, op, op_flags);
</pre>
</blockquote>
<pre class="moz-quote-pre" wrap="">This function is obsolete. Open code this.
</pre>
</blockquote>
true, will do.<br>
<blockquote type="cite" cite="mid:BL0PR04MB6514C554B4AC96866BC1B16FE7BA9@BL0PR04MB6514.namprd04.prod.outlook.com">
<pre class="moz-quote-pre" wrap="">
</pre>
<blockquote type="cite" style="color: #007cff;">
<pre class="moz-quote-pre" wrap="">+
+        return bio;
+}
 
 #endif /* __LINUX_BIO_H */

</pre>
</blockquote>
</blockquote>
<p>Thanks for the comments Damien.<br>
</p>
</body>
</html>