From: Daniel Mack Date: Mon, 22 Feb 2016 12:10:16 +0000 (+0100) Subject: missing.h: Explicitly check for IFLA_BRPORT_PROXYARP X-Git-Tag: v231.3~234 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=8427979c98b25b8e3c9c848adbd01c8196b2f93a missing.h: Explicitly check for IFLA_BRPORT_PROXYARP RHEL explicitly disables IFLA_BRPORT_PROXYARP by renaming the enum value. In order to support unpatched builds, we have two options: a) redefine the enum value through missing.h and ignore the fact that it is really unsupported, or b) omit that enum value on rtnl_prot_info_bridge_port_types[] As we are not actually using this netlink type anywhere, and because it is only hooked up for the sake of completeness, this patch opts for the former. --- diff --git a/src/basic/missing.h b/src/basic/missing.h index 170f2be79..1be35eb94 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -893,13 +893,16 @@ static inline int setns(int fd, int nstype) { #define IFLA_BRPORT_FAST_LEAVE 7 #define IFLA_BRPORT_LEARNING 8 #define IFLA_BRPORT_UNICAST_FLOOD 9 -#define IFLA_BRPORT_PROXYARP 10 #define IFLA_BRPORT_LEARNING_SYNC 11 #define __IFLA_BRPORT_MAX 12 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1) #endif +#if !HAVE_DECL_IFLA_BRPORT_PROXYARP +#define IFLA_BRPORT_PROXYARP 10 +#endif + #if !HAVE_DECL_NDA_IFINDEX #define NDA_UNSPEC 0 #define NDA_DST 1