diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-01-08 05:43:38 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-01-08 05:43:38 -0700 |
commit | 6e70fd303855575c99c520e8c46b7d85c9f21dc8 (patch) | |
tree | 2ed39f1e2adeeb1acaf1511c6bf4a667612490a6 /os | |
parent | bffad86f1e15793b6acda42ab9ca73e148f7032e (diff) | |
download | fio-6e70fd303855575c99c520e8c46b7d85c9f21dc8.tar.gz fio-6e70fd303855575c99c520e8c46b7d85c9f21dc8.tar.bz2 |
io_uring.h should include <linux/fs.h>
This ensures we have the __kernel_rwf_t definition.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'os')
-rw-r--r-- | os/io_uring.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/io_uring.h b/os/io_uring.h index 61a37531..8dda7951 100644 --- a/os/io_uring.h +++ b/os/io_uring.h @@ -1,6 +1,8 @@ #ifndef IO_URING_H #define IO_URING_H +#include <linux/fs.h> + /* * IO submission data structure */ |