add additional uapi guards for Linux kernel header files
authorHauke Mehrtens <hauke@hauke-m.de>
Sat, 6 Jan 2018 22:32:52 +0000 (23:32 +0100)
committerRich Felker <dalias@aerifal.cx>
Tue, 9 Jan 2018 18:08:25 +0000 (13:08 -0500)
With Linux kernel 4.16 it will be possible to guard more parts of the
Linux header files from a libc. Make use of this in musl to guard all
the structures and other definitions from the Linux header files which
are also defined by the header files provided by musl. This will make
it possible to compile source files which include both the libc
headers and the kernel userspace headers.

This extends the definitions done in commit 04983f227238 ("make
netinet/in.h suppress clashing definitions from kernel headers")

include/net/if.h
include/netinet/if_ether.h
include/sys/xattr.h

index 2f2fcc10e484368d51b29497ae75bcda3bdcda15..774cbff0b5064186f2208f39af36516540913a9d 100644 (file)
@@ -125,6 +125,13 @@ struct ifconf {
 #define ifc_req                ifc_ifcu.ifcu_req
 #define _IOT_ifconf _IOT(_IOTS(struct ifconf),1,0,0,0,0)
 
+#define __UAPI_DEF_IF_IFCONF                                    0
+#define __UAPI_DEF_IF_IFMAP                                     0
+#define __UAPI_DEF_IF_IFNAMSIZ                                  0
+#define __UAPI_DEF_IF_IFREQ                                     0
+#define __UAPI_DEF_IF_NET_DEVICE_FLAGS                          0
+#define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO    0
+
 #endif
 
 #ifdef __cplusplus
index d9a131aa2d1dee12ea188a58959e4cbf06844b9e..97134d75b4805c44efbd0ad8d34dfb5e082fb60b 100644 (file)
@@ -133,5 +133,6 @@ do { \
        (enaddr)[5] = ((uint8_t *)ipaddr)[3]; \
 } while(0)
 
+#define __UAPI_DEF_ETHHDR       0
 
 #endif
index 6479fcc62e5f36cb02b146d2c3ca8f1fcefbd260..eeeaafc44f09ff74e87f89e75648a3ea8ed02ec3 100644 (file)
@@ -24,6 +24,8 @@ int removexattr(const char *, const char *);
 int lremovexattr(const char *, const char *);
 int fremovexattr(int, const char *);
 
+#define __UAPI_DEF_XATTR        0
+
 #ifdef __cplusplus
 }
 #endif