diff options
author | Christoph Hellwig <hch@lst.de> | 2023-06-20 14:32:32 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-06-20 18:36:22 +0300 |
commit | 8487f083c6ff6e02b2ec14f22ef2b0079a1b6425 (patch) | |
tree | d6ead3cfb5f4ab86634ead614fdb71436fc43f4d /io_uring/rw.c | |
parent | 3beed235d1a1d0a4ab093ab67ea6b2841e9d4fa2 (diff) | |
download | linux-8487f083c6ff6e02b2ec14f22ef2b0079a1b6425.tar.xz |
io_uring: return REQ_F_ flags from io_file_get_flags
Two of the three callers want them, so return the more usual format,
and shift into the FFS_ form only for the fixed file table.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20230620113235.920399-6-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/rw.c')
-rw-r--r-- | io_uring/rw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/rw.c b/io_uring/rw.c index 1cf5742f2ae9..1bce2208b65c 100644 --- a/io_uring/rw.c +++ b/io_uring/rw.c @@ -667,7 +667,7 @@ static int io_rw_init_file(struct io_kiocb *req, fmode_t mode) return -EBADF; if (!(req->flags & REQ_F_FIXED_FILE)) - req->flags |= io_file_get_flags(file) << REQ_F_SUPPORT_NOWAIT_BIT; + req->flags |= io_file_get_flags(file); kiocb->ki_flags = file->f_iocb_flags; ret = kiocb_set_rw_flags(kiocb, rw->flags); |