diff options
author | Omar Sandoval <osandov@fb.com> | 2017-05-04 00:31:23 -0700 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-05-04 08:22:28 -0600 |
commit | bec03d6b92264bb2a06cc3d6f2da5815f0585107 (patch) | |
tree | 79954cd0c48ffdd13125022ffd3bb7fea2399011 /block | |
parent | 9052c7cf492d8c52c556f9536c4a9483fbfe4d73 (diff) |
blk-mq-debugfs: separate flags with |
This reads more naturally than spaces.
Signed-off-by: Omar Sandoval <osandov@fb.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-mq-debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-mq-debugfs.c b/block/blk-mq-debugfs.c index bcd2a7d4a3a5..1ff3d726fb03 100644 --- a/block/blk-mq-debugfs.c +++ b/block/blk-mq-debugfs.c @@ -53,7 +53,7 @@ static int blk_flags_show(struct seq_file *m, const unsigned long flags, if (!(flags & BIT(i))) continue; if (sep) - seq_puts(m, " "); + seq_puts(m, "|"); sep = true; if (i < flag_name_count && flag_name[i]) seq_puts(m, flag_name[i]); |