From: Donald Sharp Date: Sat, 12 Nov 2016 01:00:15 +0000 (-0500) Subject: pimd: Reduce pim oil scan timer to 50ms X-Git-Tag: frr-3.0-branchpoint~64^2~10^2~100 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=deab75f73acbe01d57da29f1f0446a1ce7006af2;p=mirror%2Ffrr.git pimd: Reduce pim oil scan timer to 50ms We need to react to route changes/Interface up/down events faster in PIM. Reduce the timer down to 50ms. Ticket:CM-13549 Signed-off-by: Donald Sharp --- diff --git a/pimd/pimd.c b/pimd/pimd.c index bd8ee755c3..69803a6b56 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -55,7 +55,7 @@ int qpim_mroute_oif_highest_vif_index = -1; int qpim_t_periodic = PIM_DEFAULT_T_PERIODIC; /* Period between Join/Prune Messages */ struct zclient *qpim_zclient_update = NULL; struct pim_assert_metric qpim_infinite_assert_metric; -long qpim_rpf_cache_refresh_delay_msec = 2000; +long qpim_rpf_cache_refresh_delay_msec = 50; struct thread *qpim_rpf_cache_refresher = NULL; int64_t qpim_rpf_cache_refresh_requests = 0; int64_t qpim_rpf_cache_refresh_events = 0;