diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2009-11-18 09:52:51 -0500 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2009-12-03 11:40:51 -0500 |
commit | 753c89130c52b96e66e5ceff19bd1336de9a5ce8 (patch) | |
tree | 96b7c4ea20f0bcfe5772a9b2a1618d15a259f8d0 /drivers/block | |
parent | 0d99519efef15fd0cf84a849492c7b1deee1e4b7 (diff) |
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>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/drbd/drbd_req.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/drbd/drbd_req.c b/drivers/block/drbd/drbd_req.c index d09aac4a84ec..de81ab7b4627 100644 --- a/drivers/block/drbd/drbd_req.c +++ b/drivers/block/drbd/drbd_req.c | |||
@@ -39,8 +39,8 @@ static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req | |||
39 | cpu = part_stat_lock(); | 39 | cpu = part_stat_lock(); |
40 | part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]); | 40 | part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]); |
41 | part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio)); | 41 | part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio)); |
42 | part_inc_in_flight(&mdev->vdisk->part0, rw); | ||
42 | part_stat_unlock(); | 43 | part_stat_unlock(); |
43 | mdev->vdisk->part0.in_flight[rw]++; | ||
44 | } | 44 | } |
45 | 45 | ||
46 | /* Update disk stats when completing request upwards */ | 46 | /* 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) | |||
52 | cpu = part_stat_lock(); | 52 | cpu = part_stat_lock(); |
53 | part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration); | 53 | part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration); |
54 | part_round_stats(cpu, &mdev->vdisk->part0); | 54 | part_round_stats(cpu, &mdev->vdisk->part0); |
55 | part_dec_in_flight(&mdev->vdisk->part0, rw); | ||
55 | part_stat_unlock(); | 56 | part_stat_unlock(); |
56 | mdev->vdisk->part0.in_flight[rw]--; | ||
57 | } | 57 | } |
58 | 58 | ||
59 | static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw) | 59 | static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw) |