diff options
author | Christoph Hellwig <hch@lst.de> | 2020-05-27 07:24:13 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-05-27 13:21:23 +0200 |
commit | 9123bf6f21b015cce16f3ce066c72aac9fc78d2f (patch) | |
tree | 6de6b2f2a239ecaad7993ab01557a0675afcda3c /block/bio.c | |
parent | block: remove generic_{start,end}_io_acct (diff) | |
download | linux-9123bf6f21b015cce16f3ce066c72aac9fc78d2f.tar.xz linux-9123bf6f21b015cce16f3ce066c72aac9fc78d2f.zip |
block: move update_io_ticks to blk-core.c
All callers are in blk-core.c, so move update_io_ticks over.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bio.c')
-rw-r--r-- | block/bio.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/block/bio.c b/block/bio.c index 3e89c7b37855..5235da6434aa 100644 --- a/block/bio.c +++ b/block/bio.c @@ -1376,22 +1376,6 @@ defer: schedule_work(&bio_dirty_work); } -void update_io_ticks(struct hd_struct *part, unsigned long now, bool end) -{ - unsigned long stamp; -again: - stamp = READ_ONCE(part->stamp); - if (unlikely(stamp != now)) { - if (likely(cmpxchg(&part->stamp, stamp, now) == stamp)) { - __part_stat_add(part, io_ticks, end ? now - stamp : 1); - } - } - if (part->partno) { - part = &part_to_disk(part)->part0; - goto again; - } -} - static inline bool bio_remaining_done(struct bio *bio) { /* |