Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1704889 > unrolled thread
| Started by | Mikko Rapeli <mikko.rapeli@iki.fi> |
|---|---|
| First post | 2017-08-06 19:10 +0200 |
| Last post | 2017-08-09 01:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v06 35/36] uapi linux/tls.h: don't include <net/tcp.h> in user space Mikko Rapeli <mikko.rapeli@iki.fi> - 2017-08-06 19:10 +0200
Re: [PATCH v06 35/36] uapi linux/tls.h: don't include <net/tcp.h> in user space "Dmitry V. Levin" <ldv@altlinux.org> - 2017-08-09 01:30 +0200
| From | Mikko Rapeli <mikko.rapeli@iki.fi> |
|---|---|
| Date | 2017-08-06 19:10 +0200 |
| Subject | [PATCH v06 35/36] uapi linux/tls.h: don't include <net/tcp.h> in user space |
| Message-ID | <ubxdT-50T-9@gated-at.bofh.it> |
It is not needed and not part of uapi headers, but causes
user space compilation error:
fatal error: net/tcp.h: No such file or directory
#include <net/tcp.h>
^
Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi>
Cc: Dave Watson <davejwatson@fb.com>
Cc: Ilya Lesokhin <ilyal@mellanox.com>
Cc: Aviad Yehezkel <aviadye@mellanox.com>
---
include/uapi/linux/tls.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/uapi/linux/tls.h b/include/uapi/linux/tls.h
index cc1d21db35d8..d87c698623f2 100644
--- a/include/uapi/linux/tls.h
+++ b/include/uapi/linux/tls.h
@@ -37,7 +37,9 @@
#include <asm/byteorder.h>
#include <linux/socket.h>
#include <linux/tcp.h>
+#ifdef __KERNEL__
#include <net/tcp.h>
+#endif
/* TLS socket options */
#define TLS_TX 1 /* Set transmit parameters */
--
2.13.3
[toc] | [next] | [standalone]
| From | "Dmitry V. Levin" <ldv@altlinux.org> |
|---|---|
| Date | 2017-08-09 01:30 +0200 |
| Subject | Re: [PATCH v06 35/36] uapi linux/tls.h: don't include <net/tcp.h> in user space |
| Message-ID | <ucm6K-73w-5@gated-at.bofh.it> |
| In reply to | #1704889 |
[Multipart message — attachments visible in raw view] — view raw
On Sun, Aug 06, 2017 at 06:44:26PM +0200, Mikko Rapeli wrote: > It is not needed and not part of uapi headers, but causes > user space compilation error: > > fatal error: net/tcp.h: No such file or directory > #include <net/tcp.h> > ^ > > Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi> > Cc: Dave Watson <davejwatson@fb.com> > Cc: Ilya Lesokhin <ilyal@mellanox.com> > Cc: Aviad Yehezkel <aviadye@mellanox.com> > --- > include/uapi/linux/tls.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/uapi/linux/tls.h b/include/uapi/linux/tls.h > index cc1d21db35d8..d87c698623f2 100644 > --- a/include/uapi/linux/tls.h > +++ b/include/uapi/linux/tls.h > @@ -37,7 +37,9 @@ > #include <asm/byteorder.h> > #include <linux/socket.h> > #include <linux/tcp.h> > +#ifdef __KERNEL__ > #include <net/tcp.h> > +#endif Let's move it to include/net/tls.h instead. -- ldv
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web