diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-10-05 03:31:59 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-10-05 03:31:59 -0400 |
commit | 25d2d4edfa509b69fe4832094b8a07e634363ba3 (patch) | |
tree | 3f6f44151b3b3d13806717b579647b9b43eaa656 | |
parent | 5d13379a4dba717fb75b749acc0f928c2c02db17 (diff) |
drbd: fixup for reverted dual in_flight patch
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
-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 3678d3d66c6c..d3426ff405b3 100644 --- a/drivers/block/drbd/drbd_req.c +++ b/drivers/block/drbd/drbd_req.c | |||
@@ -40,7 +40,7 @@ static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req | |||
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_stat_unlock(); | 42 | part_stat_unlock(); |
43 | mdev->vdisk->part0.in_flight[rw]++; | 43 | mdev->vdisk->part0.in_flight++; |
44 | } | 44 | } |
45 | 45 | ||
46 | /* Update disk stats when completing request upwards */ | 46 | /* Update disk stats when completing request upwards */ |
@@ -53,7 +53,7 @@ static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req) | |||
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_stat_unlock(); | 55 | part_stat_unlock(); |
56 | mdev->vdisk->part0.in_flight[rw]--; | 56 | mdev->vdisk->part0.in_flight--; |
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) |