aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tls.h
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2017-11-14 06:30:11 +0300
committerDavid S. Miller <davem@davemloft.net>2017-11-15 13:54:18 +0900
commitb9f3eb499d84f8d4adcb2f9212ec655700b28228 (patch)
treed7f0bb4083bfd8d82e66d1a7e61957fceef1ab10 /include/net/tls.h
parentusbnet: ipheth: prevent TX queue timeouts when device not ready (diff)
downloadlinux-dev-b9f3eb499d84f8d4adcb2f9212ec655700b28228.tar.xz
linux-dev-b9f3eb499d84f8d4adcb2f9212ec655700b28228.zip
uapi: fix linux/tls.h userspace compilation error
Move inclusion of a private kernel header <net/tcp.h> from uapi/linux/tls.h to its only user - net/tls.h, to fix the following linux/tls.h userspace compilation error: /usr/include/linux/tls.h:41:21: fatal error: net/tcp.h: No such file or directory As to this point uapi/linux/tls.h was totaly unusuable for userspace, cleanup this header file further by moving other redundant includes to net/tls.h. Fixes: 3c4d7559159b ("tls: kernel TLS support") Cc: <stable@vger.kernel.org> # v4.13+ Signed-off-by: Dmitry V. Levin <ldv@altlinux.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tls.h')
-rw-r--r--include/net/tls.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/tls.h b/include/net/tls.h
index 70becd0a9299..936cfc5cab7d 100644
--- a/include/net/tls.h
+++ b/include/net/tls.h
@@ -35,6 +35,10 @@
#define _TLS_OFFLOAD_H
#include <linux/types.h>
+#include <asm/byteorder.h>
+#include <linux/socket.h>
+#include <linux/tcp.h>
+#include <net/tcp.h>
#include <uapi/linux/tls.h>