diff options
author | Michael Olbrich <m.olbrich@pengutronix.de> | 2015-05-26 07:48:48 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-05-27 15:57:28 +0200 |
commit | 583c14fc04a089e9af70a3fa0b8c0a8c27c06ec0 (patch) | |
tree | 2899ec3d98e68dabcc0e3b5f5af3100c6ac3784b /src/shared | |
parent | a790812cb349c5cef95d1b4a20fc80ca08d3a145 (diff) |
missing: add more IFLA_VXLAN_* defines
Otherwise building faild with kernel headers < v3.16
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/missing.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/shared/missing.h b/src/shared/missing.h index 8ca6f8edb6..9194009491 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -713,7 +713,7 @@ static inline int setns(int fd, int nstype) { #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1) #endif -#if !HAVE_DECL_IFLA_VXLAN_LOCAL6 +#if !HAVE_DECL_IFLA_VXLAN_REMCSUM_NOPARTIAL #define IFLA_VXLAN_UNSPEC 0 #define IFLA_VXLAN_ID 1 #define IFLA_VXLAN_GROUP 2 @@ -732,7 +732,14 @@ static inline int setns(int fd, int nstype) { #define IFLA_VXLAN_PORT 15 #define IFLA_VXLAN_GROUP6 16 #define IFLA_VXLAN_LOCAL6 17 -#define __IFLA_VXLAN_MAX 18 +#define IFLA_VXLAN_UDP_CSUM 18 +#define IFLA_VXLAN_UDP_ZERO_CSUM6_TX 19 +#define IFLA_VXLAN_UDP_ZERO_CSUM6_RX 20 +#define IFLA_VXLAN_REMCSUM_TX 21 +#define IFLA_VXLAN_REMCSUM_RX 22 +#define IFLA_VXLAN_GBP 23 +#define IFLA_VXLAN_REMCSUM_NOPARTIAL 24 +#define __IFLA_VXLAN_MAX 25 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1) #endif |