diff options
author | Christoph Hellwig <hch@lst.de> | 2020-05-13 13:49:35 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-05-19 18:35:24 +0300 |
commit | 10ec5e86f9b840b7070b9146257a199dd0227d7e (patch) | |
tree | 55ffa87fe03b464d8f1e1dbdc2e27d5006815b25 /block/genhd.c | |
parent | 76268f3ac0a69e76270af5f67ab239ccd796ae56 (diff) | |
download | linux-10ec5e86f9b840b7070b9146257a199dd0227d7e.tar.xz |
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/genhd.c')
-rw-r--r-- | block/genhd.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/block/genhd.c b/block/genhd.c index 56e0560738c4..094ed9096496 100644 --- a/block/genhd.c +++ b/block/genhd.c @@ -119,26 +119,6 @@ static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat) } #endif /* CONFIG_SMP */ -void part_inc_in_flight(struct request_queue *q, struct hd_struct *part, int rw) -{ - if (queue_is_mq(q)) - return; - - part_stat_local_inc(part, in_flight[rw]); - if (part->partno) - part_stat_local_inc(&part_to_disk(part)->part0, in_flight[rw]); -} - -void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, int rw) -{ - if (queue_is_mq(q)) - return; - - part_stat_local_dec(part, in_flight[rw]); - if (part->partno) - part_stat_local_dec(&part_to_disk(part)->part0, in_flight[rw]); -} - static unsigned int part_in_flight(struct request_queue *q, struct hd_struct *part) { |