Skip to content

Commit

Permalink
drbd: fix in_flight rw indexing
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
  • Loading branch information
Jens Axboe committed Oct 28, 2009
1 parent cfb1e33 commit a870a3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/block/drbd/drbd_req.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
mdev->vdisk->part0.in_flight[rw]++;
}

/* Update disk stats when completing request upwards */
Expand All @@ -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--;
mdev->vdisk->part0.in_flight[rw]--;
}

static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
Expand Down

0 comments on commit a870a3a

Please sign in to comment.