|
@@ -256,9 +256,9 @@ extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk,
|
|
|
#define part_stat_read(part, field) \
|
|
|
({ \
|
|
|
typeof((part)->dkstats->field) res = 0; \
|
|
|
- int i; \
|
|
|
- for_each_possible_cpu(i) \
|
|
|
- res += per_cpu_ptr((part)->dkstats, i)->field; \
|
|
|
+ unsigned int _cpu; \
|
|
|
+ for_each_possible_cpu(_cpu) \
|
|
|
+ res += per_cpu_ptr((part)->dkstats, _cpu)->field; \
|
|
|
res; \
|
|
|
})
|
|
|
|