diff options
| author | Caleb Sander Mateos <csander@purestorage.com> | 2025-11-07 21:06:13 -0700 |
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2025-11-08 06:38:18 -0700 |
| commit | 4cda40dce95a5b4ec0620a84f322472730d01f7a (patch) | |
| tree | 8ba3bc7e77f675ab4fe6a0a8b024b61270f221d0 /block | |
| parent | 9517b82d8d422d426a988b213fdd45c6b417b86d (diff) | |
block: clean up indentation in blk_rq_map_iter_init()
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>
Diffstat (limited to 'block')
| -rw-r--r-- | block/blk-mq-dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk-mq-dma.c b/block/blk-mq-dma.c index 94d3461b5bc8..a7ef25843280 100644 --- a/block/blk-mq-dma.c +++ b/block/blk-mq-dma.c @@ -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) {}; } } |
