diff options
author | Christoph Hellwig <hch@lst.de> | 2020-05-13 12:49:35 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-05-19 09:35:24 -0600 |
commit | 10ec5e86f9b840b7070b9146257a199dd0227d7e (patch) | |
tree | 55ffa87fe03b464d8f1e1dbdc2e27d5006815b25 /block/blk.h | |
parent | 76268f3ac0a69e76270af5f67ab239ccd796ae56 (diff) | |
download | linux-10ec5e86f9b840b7070b9146257a199dd0227d7e.tar.gz linux-10ec5e86f9b840b7070b9146257a199dd0227d7e.tar.bz2 linux-10ec5e86f9b840b7070b9146257a199dd0227d7e.zip |
block: merge part_{inc,dev}_in_flight into their only callers
part_inc_in_flight and part_dec_in_flight only have one caller each, and
those callers are purely for bio based drivers. Merge each function into
the only caller, and remove the superflous blk-mq checks.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk.h')
-rw-r--r-- | block/blk.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/block/blk.h b/block/blk.h index eb09216b533a..af11fd400c72 100644 --- a/block/blk.h +++ b/block/blk.h @@ -345,10 +345,6 @@ void blk_queue_free_zone_bitmaps(struct request_queue *q); static inline void blk_queue_free_zone_bitmaps(struct request_queue *q) {} #endif -void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, - int rw); -void part_inc_in_flight(struct request_queue *q, struct hd_struct *part, - int rw); void update_io_ticks(struct hd_struct *part, unsigned long now, bool end); struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector); |