mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-25 16:11:45 +00:00
drbd_req.c: use part_[inc|dec]_in_flight()
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
0d99519efe
commit
753c89130c
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req
|
||||||
cpu = part_stat_lock();
|
cpu = part_stat_lock();
|
||||||
part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
|
part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
|
||||||
part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
|
part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
|
||||||
|
part_inc_in_flight(&mdev->vdisk->part0, rw);
|
||||||
part_stat_unlock();
|
part_stat_unlock();
|
||||||
mdev->vdisk->part0.in_flight[rw]++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Update disk stats when completing request upwards */
|
/* Update disk stats when completing request upwards */
|
||||||
|
@ -52,8 +52,8 @@ static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
|
||||||
cpu = part_stat_lock();
|
cpu = part_stat_lock();
|
||||||
part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
|
part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
|
||||||
part_round_stats(cpu, &mdev->vdisk->part0);
|
part_round_stats(cpu, &mdev->vdisk->part0);
|
||||||
|
part_dec_in_flight(&mdev->vdisk->part0, rw);
|
||||||
part_stat_unlock();
|
part_stat_unlock();
|
||||||
mdev->vdisk->part0.in_flight[rw]--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
|
static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue