diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-16 16:44:45 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-16 16:44:50 -0400 |
commit | 75616a1332aff00d27db713cda3bd93c508a5b59 (patch) | |
tree | d3108e7d536373457349ccaca4991567e3568df7 /src/shared/missing.h | |
parent | a9d65ac908d8311c861ccf6d19d8489249244f77 (diff) |
missing.h: add IFLA_MACVLAN_FLAGS
Now we are getting into kernel < 3.4 territory...
https://bugs.freedesktop.org/show_bug.cgi?id=80095
Diffstat (limited to 'src/shared/missing.h')
-rw-r--r-- | src/shared/missing.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/shared/missing.h b/src/shared/missing.h index f129f0b2d3..818d704f92 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -371,6 +371,15 @@ static inline int setns(int fd, int nstype) { #define LOOP_CTL_GET_FREE 0x4C82 #endif +#if !HAVE_DECL_IFLA_MACVLAN_FLAGS +#define IFLA_MACVLAN_UNSPEC 0 +#define IFLA_MACVLAN_MODE 1 +#define IFLA_MACVLAN_FLAGS 2 +#define __IFLA_MACVLAN_MAX 3 + +#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1) +#endif + #if !HAVE_DECL_IFLA_PHYS_PORT_ID #undef IFLA_PROMISCUITY #define IFLA_PROMISCUITY 30 |