diff options
author | Jakub Kicinski <kuba@kernel.org> | 2023-01-26 08:14:21 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-01-27 12:19:46 +0100 |
commit | 509f15b9c551b750d8f634d404805c3860e9ea17 (patch) | |
tree | dfc5543b76bcc9a2a8f20ef71deef338600d344c /net/unix | |
parent | net: skbuff: drop the linux/sched.h include (diff) | |
download | linux-509f15b9c551b750d8f634d404805c3860e9ea17.tar.xz linux-509f15b9c551b750d8f634d404805c3860e9ea17.zip |
net: add missing includes of linux/splice.h
Number of files depend on linux/splice.h getting included
by linux/skbuff.h which soon will no longer be the case.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/unix')
-rw-r--r-- | net/unix/af_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 009616fa0256..0be25e712c28 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -112,6 +112,7 @@ #include <linux/mount.h> #include <net/checksum.h> #include <linux/security.h> +#include <linux/splice.h> #include <linux/freezer.h> #include <linux/file.h> #include <linux/btf_ids.h> |