ipv6: directly include libc-compat.h in ipv6.h
authorWillem de Bruijn <willemb@google.com>
Mon, 12 Jan 2015 19:29:34 +0000 (14:29 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Jan 2015 21:32:49 +0000 (16:32 -0500)
Patch 3b50d9029809 ("ipv6: fix redefinition of in6_pktinfo ...")
fixed a libc compatibility issue in ipv6 structure definitions
as described in include/uapi/linux/libc-compat.h.

It relies on including linux/in6.h to include libc-compat.h itself.
Include that file directly to clearly communicate the dependency
(libc-compat.h: "This include must be as early as possible").

Signed-off-by: Willem de Bruijn <willemb@google.com>
----

As discussed in http://patchwork.ozlabs.org/patch/427384/
Acked-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/ipv6.h

index b9b1b7d..73cb02d 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef _UAPI_IPV6_H
 #define _UAPI_IPV6_H
 
+#include <linux/libc-compat.h>
 #include <linux/types.h>
 #include <linux/in6.h>
 #include <asm/byteorder.h>