From e21d71baad23b75c8cad6e486198b79a6bc6386e Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sat, 5 Nov 2016 16:41:20 +0100 Subject: [PATCH] vxlan: restore previous VXLAN_ATTR flag values The VXLAN_ATTR flags are internal and not public API. Still, they are exposed as part of nl_object_diff(). There is no reason to change previous behavior, restore the previous numeric values. --- lib/route/link/vxlan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/route/link/vxlan.c b/lib/route/link/vxlan.c index b7551d7..a92471e 100644 --- a/lib/route/link/vxlan.c +++ b/lib/route/link/vxlan.c @@ -48,9 +48,9 @@ #define VXLAN_ATTR_RSC (1<<11) #define VXLAN_ATTR_L2MISS (1<<12) #define VXLAN_ATTR_L3MISS (1<<13) -#define VXLAN_ATTR_PORT (1<<14) -#define VXLAN_ATTR_GROUP6 (1<<15) -#define VXLAN_ATTR_LOCAL6 (1<<16) +#define VXLAN_ATTR_GROUP6 (1<<14) +#define VXLAN_ATTR_LOCAL6 (1<<15) +#define VXLAN_ATTR_PORT (1<<16) #define VXLAN_ATTR_UDP_CSUM (1<<17) #define VXLAN_ATTR_UDP_ZERO_CSUM6_TX (1<<18) #define VXLAN_ATTR_UDP_ZERO_CSUM6_RX (1<<19) -- 2.50.1