2020-05-11 11:30:39

by Xiaoming Ni

[permalink] [raw]
Subject: [PATCH] fs:io_uring:Remove duplicate semicolons at the end of line

Remove duplicate semicolons at the end of line in fs/io_uring.c

Signed-off-by: Xiaoming Ni <[email protected]>
---
fs/io_uring.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/io_uring.c b/fs/io_uring.c
index 381d50b..8c543f7 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -5379,7 +5379,7 @@ static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
struct fixed_file_table *table;

table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
- return table->files[index & IORING_FILE_TABLE_MASK];;
+ return table->files[index & IORING_FILE_TABLE_MASK];
}

static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
--
1.8.5.6


2020-05-11 15:07:22

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH] fs:io_uring:Remove duplicate semicolons at the end of line

On 5/11/20 5:25 AM, Xiaoming Ni wrote:
> Remove duplicate semicolons at the end of line in fs/io_uring.c

Applied, thanks.

--
Jens Axboe