Commit 53f22956 authored by Liu Yuan's avatar Liu Yuan Committed by Jens Axboe

block/genhd: Change some numerals into macros

Rename the numerals in the diskstats_show() into the macros.

Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: default avatarLiu Yuan <tailai.ly@taobao.com>
Signed-off-by: default avatarJens Axboe <jaxboe@fusionio.com>
parent 0bbfeb83
...@@ -1158,14 +1158,14 @@ static int diskstats_show(struct seq_file *seqf, void *v) ...@@ -1158,14 +1158,14 @@ static int diskstats_show(struct seq_file *seqf, void *v)
"%u %lu %lu %llu %u %u %u %u\n", "%u %lu %lu %llu %u %u %u %u\n",
MAJOR(part_devt(hd)), MINOR(part_devt(hd)), MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
disk_name(gp, hd->partno, buf), disk_name(gp, hd->partno, buf),
part_stat_read(hd, ios[0]), part_stat_read(hd, ios[READ]),
part_stat_read(hd, merges[0]), part_stat_read(hd, merges[READ]),
(unsigned long long)part_stat_read(hd, sectors[0]), (unsigned long long)part_stat_read(hd, sectors[READ]),
jiffies_to_msecs(part_stat_read(hd, ticks[0])), jiffies_to_msecs(part_stat_read(hd, ticks[READ])),
part_stat_read(hd, ios[1]), part_stat_read(hd, ios[WRITE]),
part_stat_read(hd, merges[1]), part_stat_read(hd, merges[WRITE]),
(unsigned long long)part_stat_read(hd, sectors[1]), (unsigned long long)part_stat_read(hd, sectors[WRITE]),
jiffies_to_msecs(part_stat_read(hd, ticks[1])), jiffies_to_msecs(part_stat_read(hd, ticks[WRITE])),
part_in_flight(hd), part_in_flight(hd),
jiffies_to_msecs(part_stat_read(hd, io_ticks)), jiffies_to_msecs(part_stat_read(hd, io_ticks)),
jiffies_to_msecs(part_stat_read(hd, time_in_queue)) jiffies_to_msecs(part_stat_read(hd, time_in_queue))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment