summaryrefslogtreecommitdiff
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2022-05-18 10:40:00 +0200
committerJens Axboe <axboe@kernel.dk>2022-05-18 06:17:52 -0600
commit20cbd21d899b72765e38481a926c7b2008c64350 (patch)
tree177e55e0bf1d97bf065cd0b3dafdf49abf8e3040 /fs/io_uring.c
parentc7fb19428d67dd0a2a78a4f237af01d39c78dc5a (diff)
io_uring: use a rwf_t for io_rw.flags
Use the proper type. Signed-off-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20220518084005.3255380-2-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r--fs/io_uring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 78192a9e7684..53ddfb57e4be 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -640,7 +640,7 @@ struct io_rw {
struct kiocb kiocb;
u64 addr;
u32 len;
- u32 flags;
+ rwf_t flags;
};
struct io_connect {