diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-03-31 11:30:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-31 11:30:33 +0200 |
commit | 510cb1ce89d8ce3310e7ca514dd35986964d6f01 (patch) | |
tree | de3f366a982fb82000f8c5d96a982ad99bacb607 /src/basic | |
parent | 0b180d754cd9b171f38e39554495841f666060f7 (diff) | |
parent | d8653945f71dc8a6fa27b033fdecb97bba95bf36 (diff) |
Merge pull request #5534 from ssahani/vxlan-label
networkd: vxlan support setting IPv6 flow label
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/missing.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/basic/missing.h b/src/basic/missing.h index 480462357d..284cbaffc0 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -726,7 +726,7 @@ struct btrfs_ioctl_quota_ctl_args { #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1) #endif -#if !HAVE_DECL_IFLA_VXLAN_REMCSUM_NOPARTIAL +#if !HAVE_DECL_IFLA_VXLAN_GPE #define IFLA_VXLAN_UNSPEC 0 #define IFLA_VXLAN_ID 1 #define IFLA_VXLAN_GROUP 2 @@ -752,7 +752,11 @@ struct btrfs_ioctl_quota_ctl_args { #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_COLLECT_METADATA 25 +#define IFLA_VXLAN_LABEL 26 +#define IFLA_VXLAN_GPE 27 + +#define __IFLA_VXLAN_MAX 28 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1) #endif |