diff options
author | Jakub Kicinski <kuba@kernel.org> | 2023-01-26 10:14:21 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-01-27 14:19:46 +0300 |
commit | 509f15b9c551b750d8f634d404805c3860e9ea17 (patch) | |
tree | dfc5543b76bcc9a2a8f20ef71deef338600d344c /net/smc | |
parent | 422164224e32525f88aa9633dea176484fe2c50c (diff) | |
download | linux-509f15b9c551b750d8f634d404805c3860e9ea17.tar.xz |
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/smc')
-rw-r--r-- | net/smc/af_smc.c | 1 | ||||
-rw-r--r-- | net/smc/smc_rx.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index 036532cf39aa..1c0fe9ba5358 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -27,6 +27,7 @@ #include <linux/if_vlan.h> #include <linux/rcupdate_wait.h> #include <linux/ctype.h> +#include <linux/splice.h> #include <net/sock.h> #include <net/tcp.h> diff --git a/net/smc/smc_rx.c b/net/smc/smc_rx.c index 0a6e615f000c..4380d32f5a5f 100644 --- a/net/smc/smc_rx.c +++ b/net/smc/smc_rx.c @@ -13,6 +13,7 @@ #include <linux/net.h> #include <linux/rcupdate.h> #include <linux/sched/signal.h> +#include <linux/splice.h> #include <net/sock.h> #include <trace/events/sock.h> |