aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2022-03-30 11:06:02 -0600
committerJens Axboe <axboe@kernel.dk>2022-04-03 17:07:54 -0600
commitec858afda857e361182ceafc3d2ba2b164b8e889 (patch)
treee2a9807f149cd20c0cd240fd57478c898a9712d5 /fs
parentLinux 5.18-rc1 (diff)
downloadlinux-dev-ec858afda857e361182ceafc3d2ba2b164b8e889.tar.xz
linux-dev-ec858afda857e361182ceafc3d2ba2b164b8e889.zip
io_uring: don't check req->file in io_fsync_prep()
This is a leftover from the really old days where we weren't able to track and error early if we need a file and it wasn't assigned. Kill the check. Cc: stable@vger.kernel.org # v5.15+ Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs')
-rw-r--r--fs/io_uring.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index a8413f006417..9108c56bff5b 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -4513,9 +4513,6 @@ static int io_fsync_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
{
struct io_ring_ctx *ctx = req->ctx;
- if (!req->file)
- return -EBADF;
-
if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
return -EINVAL;
if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||