diff options
author | Jerome Marchand <jmarchan@redhat.com> | 2008-02-08 05:04:53 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-02-08 06:41:57 -0500 |
commit | a890d62b9e8743341f62548104d1ac29fa8a5a88 (patch) | |
tree | 5445d2674bd2e9b25ef11a3b77480d125ff47cc3 | |
parent | 6f2576af5ba5913538fda7dfb7c6a17771025477 (diff) |
Enhanced partition statistics: aoe fix
Updates the enhanced partition statistics in ATA over Ethernet driver
(not tested).
Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
-rw-r--r-- | drivers/block/aoe/aoecmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index 4d59d5057734..9e5a37fb36cf 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c | |||
@@ -648,10 +648,10 @@ aoecmd_ata_rsp(struct sk_buff *skb) | |||
648 | struct gendisk *disk = d->gd; | 648 | struct gendisk *disk = d->gd; |
649 | const int rw = bio_data_dir(buf->bio); | 649 | const int rw = bio_data_dir(buf->bio); |
650 | 650 | ||
651 | disk_stat_inc(disk, ios[rw]); | 651 | all_stat_inc(disk, ios[rw], buf->sector); |
652 | disk_stat_add(disk, ticks[rw], duration); | 652 | all_stat_add(disk, ticks[rw], duration, buf->sector); |
653 | disk_stat_add(disk, sectors[rw], n_sect); | 653 | all_stat_add(disk, sectors[rw], n_sect, buf->sector); |
654 | disk_stat_add(disk, io_ticks, duration); | 654 | all_stat_add(disk, io_ticks, duration, buf->sector); |
655 | n = (buf->flags & BUFFL_FAIL) ? -EIO : 0; | 655 | n = (buf->flags & BUFFL_FAIL) ? -EIO : 0; |
656 | bio_endio(buf->bio, n); | 656 | bio_endio(buf->bio, n); |
657 | mempool_free(buf, d->bufpool); | 657 | mempool_free(buf, d->bufpool); |