diff options
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/aoe/aoecmd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index 934800f979c9..961d29a53cab 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c | |||
@@ -758,15 +758,15 @@ diskstats(struct gendisk *disk, struct bio *bio, ulong duration, sector_t sector | |||
758 | struct hd_struct *part; | 758 | struct hd_struct *part; |
759 | int cpu; | 759 | int cpu; |
760 | 760 | ||
761 | cpu = disk_stat_lock(); | 761 | cpu = part_stat_lock(); |
762 | part = disk_map_sector_rcu(disk, sector); | 762 | part = disk_map_sector_rcu(disk, sector); |
763 | 763 | ||
764 | all_stat_inc(cpu, disk, part, ios[rw], sector); | 764 | part_stat_inc(cpu, part, ios[rw]); |
765 | all_stat_add(cpu, disk, part, ticks[rw], duration, sector); | 765 | part_stat_add(cpu, part, ticks[rw], duration); |
766 | all_stat_add(cpu, disk, part, sectors[rw], n_sect, sector); | 766 | part_stat_add(cpu, part, sectors[rw], n_sect); |
767 | all_stat_add(cpu, disk, part, io_ticks, duration, sector); | 767 | part_stat_add(cpu, part, io_ticks, duration); |
768 | 768 | ||
769 | disk_stat_unlock(); | 769 | part_stat_unlock(); |
770 | } | 770 | } |
771 | 771 | ||
772 | void | 772 | void |