]> Git Repo - linux.git/commitdiff
io_uring: remove redundant tab space
authorGuoYong Zheng <[email protected]>
Wed, 5 Jan 2022 10:13:05 +0000 (18:13 +0800)
committerJens Axboe <[email protected]>
Wed, 5 Jan 2022 19:31:37 +0000 (12:31 -0700)
When show fdinfo, SqMask follow two tab space, which is inconsistent with
other parameters. Remove one, so it lines up nicely.

Signed-off-by: GuoYong Zheng <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
fs/io_uring.c

index 73742dacc8ae203082fc583e60f2f50eab37337c..aed1625a26e12bc75d9654feb652f3d223aa6564 100644 (file)
@@ -10151,7 +10151,7 @@ static __cold void __io_uring_show_fdinfo(struct io_ring_ctx *ctx,
         * and sq_tail and cq_head are changed by userspace. But it's ok since
         * we usually use these info when it is stuck.
         */
-       seq_printf(m, "SqMask:\t\t0x%x\n", sq_mask);
+       seq_printf(m, "SqMask:\t0x%x\n", sq_mask);
        seq_printf(m, "SqHead:\t%u\n", sq_head);
        seq_printf(m, "SqTail:\t%u\n", sq_tail);
        seq_printf(m, "CachedSqHead:\t%u\n", ctx->cached_sq_head);
This page took 0.064941 seconds and 4 git commands to generate.