Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Caleb Sander Mateos and committed by
Jens Axboe
4cda40dc 9517b82d

+2 -2
+2 -2
block/blk-mq-dma.c
··· 142 142 .bi_size = rq->special_vec.bv_len, 143 143 } 144 144 }; 145 - } else if (bio) { 145 + } else if (bio) { 146 146 *iter = (struct blk_map_iter) { 147 147 .bio = bio, 148 148 .bvecs = bio->bi_io_vec, ··· 150 150 }; 151 151 } else { 152 152 /* the internal flush request may not have bio attached */ 153 - *iter = (struct blk_map_iter) {}; 153 + *iter = (struct blk_map_iter) {}; 154 154 } 155 155 } 156 156