diff options
author | Kuniyuki Iwashima <kuniyu@amazon.com> | 2024-02-13 02:42:36 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-02-13 05:02:11 +0300 |
commit | 3fb1764c6b57808ddab7fe7c242fa04c2479ef0a (patch) | |
tree | 48d7d4496c68db274b1b5c116c09629d3d5a6834 /io_uring/rw.c | |
parent | ef1186c1a875bfa8a8cbfc2a9670b14b082187a9 (diff) | |
download | linux-3fb1764c6b57808ddab7fe7c242fa04c2479ef0a.tar.xz |
io_uring: Don't include af_unix.h.
Changes to AF_UNIX trigger rebuild of io_uring, but io_uring does
not use AF_UNIX anymore.
Let's not include af_unix.h and instead include necessary headers.
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Link: https://lore.kernel.org/r/20240212234236.63714-1-kuniyu@amazon.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/rw.c')
-rw-r--r-- | io_uring/rw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/io_uring/rw.c b/io_uring/rw.c index 8ba93fffc23a..6f465b6b5dde 100644 --- a/io_uring/rw.c +++ b/io_uring/rw.c @@ -11,6 +11,7 @@ #include <linux/nospec.h> #include <linux/compat.h> #include <linux/io_uring/cmd.h> +#include <linux/indirect_call_wrapper.h> #include <uapi/linux/io_uring.h> |