All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs:io_uring:Remove duplicate semicolons at the end of line
@ 2020-05-11 11:25 Xiaoming Ni
  2020-05-11 15:04 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Xiaoming Ni @ 2020-05-11 11:25 UTC (permalink / raw)
  To: axboe, viro; +Cc: io-uring, linux-fsdevel, linux-kernel, nixiaoming, wangle6

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

Signed-off-by: Xiaoming Ni <nixiaoming@huawei.com>
---
 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] fs:io_uring:Remove duplicate semicolons at the end of line
  2020-05-11 11:25 [PATCH] fs:io_uring:Remove duplicate semicolons at the end of line Xiaoming Ni
@ 2020-05-11 15:04 ` Jens Axboe
  0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2020-05-11 15:04 UTC (permalink / raw)
  To: Xiaoming Ni, viro; +Cc: io-uring, linux-fsdevel, linux-kernel, wangle6

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


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-05-11 15:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11 11:25 [PATCH] fs:io_uring:Remove duplicate semicolons at the end of line Xiaoming Ni
2020-05-11 15:04 ` Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.