diff options
author | Pavel Begunkov | 2022-06-16 13:57:19 +0100 |
---|---|---|
committer | Jens Axboe | 2022-07-24 18:39:14 -0600 |
commit | ab1c84d855cf2c284fa0f4b17fc04063659c54a1 (patch) | |
tree | fcd37ba6aab3db4115bfa49421662e91854823e2 /io_uring/io_uring.h | |
parent | 27a9d66fec77cff0e32d2ecd5d0ac7ef878a7bb0 (diff) |
io_uring: make io_uring_types.h public
Move io_uring types to linux/include, need them public so tracing can
see the definitions and we can clean trace/events/io_uring.h
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/a15f12e8cb7289b2de0deaddcc7518d98a132d17.1655384063.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/io_uring.h')
-rw-r--r-- | io_uring/io_uring.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/io_uring/io_uring.h b/io_uring/io_uring.h index 558a860a93fc..5eaa01c4697c 100644 --- a/io_uring/io_uring.h +++ b/io_uring/io_uring.h @@ -3,7 +3,9 @@ #include <linux/errno.h> #include <linux/lockdep.h> -#include "io_uring_types.h" +#include <linux/io_uring_types.h> +#include "io-wq.h" +#include "filetable.h" #ifndef CREATE_TRACE_POINTS #include <trace/events/io_uring.h> |