]> git.hungrycats.org Git - linux/commitdiff
io_uring: rename kiocb_end_write() local helper
authorAmir Goldstein <amir73il@gmail.com>
Thu, 17 Aug 2023 14:13:31 +0000 (17:13 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 17 Nov 2024 13:59:37 +0000 (14:59 +0100)
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>
io_uring/io_uring.c

index da07fba75827c9cec8cf32fd84643070a16d5ed3..ec55f2788ac64833de4047f402c2467a4bd50f11 100644 (file)
@@ -2667,7 +2667,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
@@ -2737,7 +2737,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);
@@ -2817,7 +2817,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;
@@ -3817,7 +3817,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;