diff options
author | GuoYong Zheng <zhenggy@chinatelecom.cn> | 2022-01-05 13:13:05 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-01-05 22:31:37 +0300 |
commit | c0235652ee5194fc75926daa580817e63ceb37ab (patch) | |
tree | 2b4ee9a1eae2e7914856d1ee260676d18a92da06 /fs/io_uring.c | |
parent | 00f6e68b8d59bf006db54e3e257684f44d26195c (diff) | |
download | linux-c0235652ee5194fc75926daa580817e63ceb37ab.tar.xz |
io_uring: remove redundant tab space
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 <zhenggy@chinatelecom.cn>
Link: https://lore.kernel.org/r/1641377585-1891-1-git-send-email-zhenggy@chinatelecom.cn
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r-- | fs/io_uring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c index 73742dacc8ae..aed1625a26e1 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -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); |