mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:24:47 +01:00
io_uring/fdinfo: kill unnecessary newline feed in CQE32 printing
There's an unconditional newline feed anyway after dumping both normal and big CQE contents, remove the \n from the CQE32 extra1/extra2 printing. Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
af07330e28
commit
b1dfe4e0fc
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
|
|||
cq_head & cq_mask, cqe->user_data, cqe->res,
|
||||
cqe->flags);
|
||||
if (cqe32)
|
||||
seq_printf(m, ", extra1:%llu, extra2:%llu\n",
|
||||
seq_printf(m, ", extra1:%llu, extra2:%llu",
|
||||
cqe->big_cqe[0], cqe->big_cqe[1]);
|
||||
seq_printf(m, "\n");
|
||||
cq_head++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue