diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-09-19 05:41:00 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-10-01 05:32:33 +0300 |
commit | a3ec60054082ca2c2145ba487f9fc4de904e2b03 (patch) | |
tree | 0e08bc6921f35bc8cce5da04cad3343b685f1d95 /net | |
parent | 9b8284921513fc1ea57d87777283a59b05862f03 (diff) | |
download | linux-a3ec60054082ca2c2145ba487f9fc4de904e2b03.tar.xz |
io_uring: move io_uring_get_socket() into io_uring.h
Now we have a io_uring kernel header, move this definition out of fs.h
and into io_uring.h where it belongs.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'net')
-rw-r--r-- | net/unix/scm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/unix/scm.c b/net/unix/scm.c index 8c40f2b32392..052ae709ce28 100644 --- a/net/unix/scm.c +++ b/net/unix/scm.c @@ -8,6 +8,7 @@ #include <net/af_unix.h> #include <net/scm.h> #include <linux/init.h> +#include <linux/io_uring.h> #include "scm.h" |