* [PATCH] io_uring: remove unused para
@ 2022-01-05 10:12 GuoYong Zheng
2022-01-05 19:30 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: GuoYong Zheng @ 2022-01-05 10:12 UTC (permalink / raw)
To: axboe, asml.silence; +Cc: io-uring, linux-kernel, GuoYong Zheng
Para res2 is not used in __io_complete_rw, remove it.
Signed-off-by: GuoYong Zheng <[email protected]>
---
fs/io_uring.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/io_uring.c b/fs/io_uring.c
index e6fb1bb..8473f955 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -2858,7 +2858,7 @@ static inline void io_req_task_complete(struct io_kiocb *req, bool *locked)
}
}
-static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
+static void __io_complete_rw(struct io_kiocb *req, long res,
unsigned int issue_flags)
{
if (__io_complete_rw_common(req, res))
@@ -3108,7 +3108,7 @@ static void kiocb_done(struct io_kiocb *req, ssize_t ret,
if (req->flags & REQ_F_CUR_POS)
req->file->f_pos = req->rw.kiocb.ki_pos;
if (ret >= 0 && (req->rw.kiocb.ki_complete == io_complete_rw))
- __io_complete_rw(req, ret, 0, issue_flags);
+ __io_complete_rw(req, ret, issue_flags);
else
io_rw_done(&req->rw.kiocb, ret);
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-01-05 19:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-05 10:12 [PATCH] io_uring: remove unused para GuoYong Zheng
2022-01-05 19:30 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox