diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-06-22 08:12:04 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-06-23 13:29:19 -0400 | 
| commit | 75700af6027073a2ede58b429ec49b6beb05dcb3 (patch) | |
| tree | 18a84e3f929f681e2c2232fca177a72f49febdc6 /pimd/pim_instance.h | |
| parent | 8b5153aab09695f19eed74b141919487369b58c2 (diff) | |
pimd: Limit pim's ecmp to what zebra tells us is the multipath
Zebra can be setup to use a value that is less than MULTIPATH_NUM.
When pimd connects to zebra, zebra will inform pim about the MULTIPATH_NUM
used.  Let's use that value for figuring out our multipath value.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'pimd/pim_instance.h')
| -rw-r--r-- | pimd/pim_instance.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_instance.h b/pimd/pim_instance.h index b19e8208ba..23b9df4aff 100644 --- a/pimd/pim_instance.h +++ b/pimd/pim_instance.h @@ -88,6 +88,7 @@ struct pim_router {  	uint32_t register_suppress_time;  	int packet_process;  	uint32_t register_probe_time; +	uint16_t multipath;  	/*  	 * What is the default vrf that we work in  | 
