]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
block: Error an attempt to split an atomic write in bio_split()
authorJohn Garry <john.g.garry@oracle.com>
Mon, 11 Nov 2024 11:21:46 +0000 (11:21 +0000)
committerJens Axboe <axboe@kernel.dk>
Mon, 11 Nov 2024 15:35:46 +0000 (08:35 -0700)
This is disallowed.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: John Garry <john.g.garry@oracle.com>
Link: https://lore.kernel.org/r/20241111112150.3756529-3-john.g.garry@oracle.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/bio.c

index 948b22825510b8268b5532a0327475e11c49d469..699a78c85c75660fed2463759e2491bb12c63453 100644 (file)
@@ -1674,6 +1674,10 @@ struct bio *bio_split(struct bio *bio, int sectors,
        if (WARN_ON_ONCE(bio_op(bio) == REQ_OP_ZONE_APPEND))
                return ERR_PTR(-EINVAL);
 
+       /* atomic writes cannot be split */
+       if (bio->bi_opf & REQ_ATOMIC)
+               return ERR_PTR(-EINVAL);
+
        split = bio_alloc_clone(bio->bi_bdev, bio, gfp, bs);
        if (!split)
                return ERR_PTR(-ENOMEM);