mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 05:30:52 +07:00
block: code cleanup queue_poll_stat_show()
This is a pure code cleanup patch and doesn't change any functionality. Having multiple coding styles in the code creates confusion when someone tries to add a new code. Make queue_poll_stat_show() consistent by adding spaces around binary operators with the rest of the code. Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
3f6d385f81
commit
243d9f78d9
@ -29,13 +29,13 @@ static int queue_poll_stat_show(void *data, struct seq_file *m)
|
|||||||
struct request_queue *q = data;
|
struct request_queue *q = data;
|
||||||
int bucket;
|
int bucket;
|
||||||
|
|
||||||
for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS/2; bucket++) {
|
for (bucket = 0; bucket < (BLK_MQ_POLL_STATS_BKTS / 2); bucket++) {
|
||||||
seq_printf(m, "read (%d Bytes): ", 1 << (9+bucket));
|
seq_printf(m, "read (%d Bytes): ", 1 << (9 + bucket));
|
||||||
print_stat(m, &q->poll_stat[2*bucket]);
|
print_stat(m, &q->poll_stat[2 * bucket]);
|
||||||
seq_puts(m, "\n");
|
seq_puts(m, "\n");
|
||||||
|
|
||||||
seq_printf(m, "write (%d Bytes): ", 1 << (9+bucket));
|
seq_printf(m, "write (%d Bytes): ", 1 << (9 + bucket));
|
||||||
print_stat(m, &q->poll_stat[2*bucket+1]);
|
print_stat(m, &q->poll_stat[2 * bucket + 1]);
|
||||||
seq_puts(m, "\n");
|
seq_puts(m, "\n");
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user