From deab75f73acbe01d57da29f1f0446a1ce7006af2 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 11 Nov 2016 20:00:15 -0500 Subject: [PATCH] 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 --- pimd/pimd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5