Commit dd6bd77d authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Philipp Reisner

drbd: fix for in_flight change in block tree

Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: default avatarLars Ellenberg <lars.ellenberg@linbit.com>
parent 6bd9c335
...@@ -42,7 +42,7 @@ static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req ...@@ -42,7 +42,7 @@ static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req
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_stat_unlock(); part_stat_unlock();
mdev->vdisk->part0.in_flight++; mdev->vdisk->part0.in_flight[rw]++;
} }
/* Update disk stats when completing request upwards */ /* Update disk stats when completing request upwards */
...@@ -55,7 +55,7 @@ static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req) ...@@ -55,7 +55,7 @@ static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
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_stat_unlock(); part_stat_unlock();
mdev->vdisk->part0.in_flight--; 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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment