io_uring: rename kiocb_end_write() local helper
Commit a370167fe526123637965f60859a9f1f3e1a58b7 upstream. This helper does not take a kiocb as input and we want to create a common helper by that name that takes a kiocb as input. Signed-off-by: Amir Goldstein <amir73il@gmail.com> Reviewed-by: Jan Kara <jack@suse.cz> Reviewed-by: Jens Axboe <axboe@kernel.dk> Message-Id: <20230817141337.1025891-2-amir73il@gmail.com> Signed-off-by: Christian Brauner <brauner@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3676f0afd7
commit
82c762c97b
1 changed files with 4 additions and 4 deletions
|
@ -2686,7 +2686,7 @@ out:
|
|||
return ret;
|
||||
}
|
||||
|
||||
static void kiocb_end_write(struct io_kiocb *req)
|
||||
static void io_req_end_write(struct io_kiocb *req)
|
||||
{
|
||||
/*
|
||||
* Tell lockdep we inherited freeze protection from submission
|
||||
|
@ -2756,7 +2756,7 @@ static void io_req_io_end(struct io_kiocb *req)
|
|||
struct io_rw *rw = &req->rw;
|
||||
|
||||
if (rw->kiocb.ki_flags & IOCB_WRITE) {
|
||||
kiocb_end_write(req);
|
||||
io_req_end_write(req);
|
||||
fsnotify_modify(req->file);
|
||||
} else {
|
||||
fsnotify_access(req->file);
|
||||
|
@ -2836,7 +2836,7 @@ static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
|
|||
struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
|
||||
|
||||
if (kiocb->ki_flags & IOCB_WRITE)
|
||||
kiocb_end_write(req);
|
||||
io_req_end_write(req);
|
||||
if (unlikely(res != req->result)) {
|
||||
if (res == -EAGAIN && io_rw_should_reissue(req)) {
|
||||
req->flags |= REQ_F_REISSUE;
|
||||
|
@ -3836,7 +3836,7 @@ copy_iov:
|
|||
ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
|
||||
if (!ret) {
|
||||
if (kiocb->ki_flags & IOCB_WRITE)
|
||||
kiocb_end_write(req);
|
||||
io_req_end_write(req);
|
||||
return -EAGAIN;
|
||||
}
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Reference in a new issue