mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
drbd: fixup for reverted dual in_flight patch
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
5d13379a4d
commit
25d2d4edfa
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,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_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
|
||||
part_stat_unlock();
|
||||
mdev->vdisk->part0.in_flight[rw]++;
|
||||
mdev->vdisk->part0.in_flight++;
|
||||
}
|
||||
|
||||
/* 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)
|
|||
part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
|
||||
part_round_stats(cpu, &mdev->vdisk->part0);
|
||||
part_stat_unlock();
|
||||
mdev->vdisk->part0.in_flight[rw]--;
|
||||
mdev->vdisk->part0.in_flight--;
|
||||
}
|
||||
|
||||
static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
|
||||
|
|
Loading…
Reference in a new issue