From: Omar Sandoval Date: Thu, 4 May 2017 07:31:23 +0000 (-0700) Subject: blk-mq-debugfs: separate flags with | X-Git-Tag: MMI-PSA29.97-13-9~5662^2~11 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bec03d6b92264bb2a06cc3d6f2da5815f0585107;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git blk-mq-debugfs: separate flags with | This reads more naturally than spaces. Signed-off-by: Omar Sandoval Reviewed-by: Hannes Reinecke Signed-off-by: Jens Axboe --- 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]);