]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Add bridge NL params to missing.h
authorSusant Sahani <susant@redhat.com>
Thu, 23 Jul 2015 09:09:11 +0000 (09:09 +0000)
committerSusant Sahani <susant@redhat.com>
Thu, 23 Jul 2015 09:36:03 +0000 (15:06 +0530)
configure.ac
src/basic/missing.h

index ff6364aba25c793f2198cbabf0202d3961032bfa..17c2f2b17de3e3741eb5c06eff1aea524da927b1 100644 (file)
@@ -302,7 +302,7 @@ AC_CHECK_DECLS([IFLA_INET6_ADDR_GEN_MODE,
                 IFLA_IPTUN_ENCAP_DPORT,
                 IFLA_GRE_ENCAP_DPORT,
                 IFLA_BRIDGE_VLAN_INFO,
-                IFLA_BRPORT_UNICAST_FLOOD,
+                IFLA_BRPORT_LEARNING_SYNC,
                 NDA_IFINDEX,
                 IFA_FLAGS],
 [], [], [[
index bd49f10e7618ec4e90c8f30353a216e44ace46ce..ed6cd80c7538c4a848ce4ab168db25fb62aa9859 100644 (file)
@@ -832,7 +832,7 @@ static inline int setns(int fd, int nstype) {
 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
 #endif
 
-#if !HAVE_DECL_IFLA_BRPORT_UNICAST_FLOOD
+#if !HAVE_DECL_IFLA_BRPORT_LEARNING_SYNC
 #define IFLA_BRPORT_UNSPEC 0
 #define IFLA_BRPORT_STATE 1
 #define IFLA_BRPORT_PRIORITY 2
@@ -843,7 +843,9 @@ 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_MAX 10
+#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