diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-07 10:23:32 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-07 10:23:32 -0400 | 
| commit | 4795fff748d6b55479b60013fd2dc8fdf8b4c7c2 (patch) | |
| tree | 38aa32a9d0a6d834d9badaea95f971bb80803469 /pimd/pimd.c | |
| parent | 7348e571b7b0e2616726723bb624d3a15be5f40a (diff) | |
pimd: Fix ecmp_enable and ecmp_rebalance_enable
These commands were being accepted in all vrf's and
affecting all vrf's behavior globally, since they were
global variables.
Modify the code to make these two commands work
on a per-vrf basis.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pimd.c')
| -rw-r--r-- | pimd/pimd.c | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/pimd/pimd.c b/pimd/pimd.c index 551f6047d7..5f87102626 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -53,8 +53,6 @@ int qpim_t_periodic =  struct pim_assert_metric qpim_infinite_assert_metric;  long qpim_rpf_cache_refresh_delay_msec = 50;  int qpim_packet_process = PIM_DEFAULT_PACKET_PROCESS; -uint8_t qpim_ecmp_enable = 0; -uint8_t qpim_ecmp_rebalance_enable = 0;  struct pim_instance *pimg = NULL;  int32_t qpim_register_suppress_time = PIM_REGISTER_SUPPRESSION_TIME_DEFAULT;  | 
