summaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorZheng Bin <zhengbin13@huawei.com>2020-09-09 20:12:37 +0800
committerJens Axboe <axboe@kernel.dk>2020-09-30 20:32:34 -0600
commit14db84110d489276d9c06ea38d59d3ff0ade2ae1 (patch)
tree774ea4f54f9789ee5319b5d2cb78ba4e8fac6284 /fs/io_uring.c
parente95eee2dee7862f267a169b10d384c82f71010ce (diff)
io_uring: remove unneeded semicolon
Fixes coccicheck warning: fs/io_uring.c:4242:13-14: Unneeded semicolon Signed-off-by: Zheng Bin <zhengbin13@huawei.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r--fs/io_uring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 61a65a2b0a24..23fecfb7e100 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -4231,7 +4231,7 @@ static int io_send(struct io_kiocb *req, bool force_nonblock,
ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
if (unlikely(ret))
- return ret;;
+ return ret;
msg.msg_name = NULL;
msg.msg_control = NULL;