diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2022-08-24 15:07:40 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-08-24 17:57:15 +0300 |
commit | 986e263def32eec89153babf469859d837507d34 (patch) | |
tree | 02f70d828b5554ee612dbb25181e1a39ccc8a8e7 /io_uring | |
parent | 5a848b7c9e5e4d94390fbc391ccb81d40f3ccfb5 (diff) | |
download | linux-986e263def32eec89153babf469859d837507d34.tar.xz |
io_uring/net: fix indentation
Fix up indentation before we get complaints from tooling.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/bd5754e3764215ccd7fb04cd636ea9167aaa275d.1661342812.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring')
-rw-r--r-- | io_uring/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/net.c b/io_uring/net.c index d6310c655a0f..3adcb09ae264 100644 --- a/io_uring/net.c +++ b/io_uring/net.c @@ -989,7 +989,7 @@ int io_sendzc(struct io_kiocb *req, unsigned int issue_flags) ret = io_import_fixed(WRITE, &msg.msg_iter, req->imu, (u64)(uintptr_t)zc->buf, zc->len); if (unlikely(ret)) - return ret; + return ret; } else { ret = import_single_range(WRITE, zc->buf, zc->len, &iov, &msg.msg_iter); |