]> git.puffer.fish Git - mirror/frr.git/commitdiff
zebra: Fix NEXTHOP_GROUP_FPM define value 15183/head
authorDonald Sharp <sharpd@nvidia.com>
Sun, 21 Jan 2024 00:10:07 +0000 (19:10 -0500)
committerDonald Sharp <sharpd@nvidia.com>
Sun, 21 Jan 2024 00:10:07 +0000 (19:10 -0500)
The NEXTHOP_GROUP_FPM #define conflicts with
NEXTHOP_GROUP_KEEP_AROUND.  Not ideal let's fix
this.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
zebra/zebra_nhg.h

index 6179be3442e79a3e7d00f40e59cfadef86b8eb7e..4eddecb73d6ea03c5e98d53dcd764c3233718cd1 100644 (file)
@@ -143,7 +143,7 @@ struct nhg_hash_entry {
 /*
  * Track FPM installation status..
  */
-#define NEXTHOP_GROUP_FPM (1 << 6)
+#define NEXTHOP_GROUP_FPM (1 << 7)
 };
 
 /* Upper 4 bits of the NHG are reserved for indicating the NHG type */