From bacef2a229a9bee12adbea92dfb47db8757441c8 Mon Sep 17 00:00:00 2001 From: Rabin Vincent Date: Fri, 12 Feb 2016 08:41:44 +0100 Subject: [PATCH] missing.h: define IFLA_EXT_MASK We already define IFLA_PROMISCUITY and some other of these masks in order to allow building with older headers. Define IFLA_EXT_MASK too, which was added in the same kernel version as IFLA_PROMISCUITY (v3.10). --- src/basic/missing.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/basic/missing.h b/src/basic/missing.h index 36b060496a..4d3764c022 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -714,6 +714,7 @@ static inline int setns(int fd, int nstype) { #endif #if !HAVE_DECL_IFLA_PHYS_PORT_ID +#define IFLA_EXT_MASK 29 #undef IFLA_PROMISCUITY #define IFLA_PROMISCUITY 30 #define IFLA_NUM_TX_QUEUES 31