]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
block: clean up indentation in blk_rq_map_iter_init()
authorCaleb Sander Mateos <csander@purestorage.com>
Sat, 8 Nov 2025 04:06:13 +0000 (21:06 -0700)
committerJens Axboe <axboe@kernel.dk>
Sat, 8 Nov 2025 13:38:18 +0000 (06:38 -0700)
blk_rq_map_iter_init() has one line with 7 spaces of indentation and
another that mixes 1 tab and 8 spaces. Convert both to tabs.

Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq-dma.c

index 94d3461b5bc8ea35ecb55191e4852f430b295057..a7ef258432803074244a885b97f2b8a2f1c449ec 100644 (file)
@@ -142,7 +142,7 @@ static inline void blk_rq_map_iter_init(struct request *rq,
                                .bi_size = rq->special_vec.bv_len,
                        }
                };
-       } else if (bio) {
+       } else if (bio) {
                *iter = (struct blk_map_iter) {
                        .bio = bio,
                        .bvecs = bio->bi_io_vec,
@@ -150,7 +150,7 @@ static inline void blk_rq_map_iter_init(struct request *rq,
                };
        } else {
                /* the internal flush request may not have bio attached */
-               *iter = (struct blk_map_iter) {};
+               *iter = (struct blk_map_iter) {};
        }
 }