diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2024-01-20 19:10:07 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2024-01-20 19:10:07 -0500 | 
| commit | daed95ddce8f59d249dae885a1060e49c6071f7c (patch) | |
| tree | 91590349d1cab4a42219894f8427bbcbda3d6ca4 /zebra/zebra_nhg.h | |
| parent | e37f18b780c56afcbecc38f8f90c89c8172adca2 (diff) | |
zebra: Fix NEXTHOP_GROUP_FPM define value
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>
Diffstat (limited to 'zebra/zebra_nhg.h')
| -rw-r--r-- | zebra/zebra_nhg.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_nhg.h b/zebra/zebra_nhg.h index 6179be3442..4eddecb73d 100644 --- a/zebra/zebra_nhg.h +++ b/zebra/zebra_nhg.h @@ -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 */  | 
