From bd8bc87638dd6f7a55b76a90a228a19f13ce0b4a Mon Sep 17 00:00:00 2001 From: Jafar Al-Gharaibeh Date: Sat, 11 Jan 2025 14:40:28 -0600 Subject: [PATCH] pimd: explicitly ensure the RP src is BSR With the recent suppoort of multiple sources of RPs, we can assume non static RPs are BSR RPs. Just make the check explicit for BSR. Signed-off-by: Jafar Al-Gharaibeh (cherry picked from commit cda66453c1ffc82731dae24e2ccf7caeb69baa7c) --- pimd/pim_bsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pimd/pim_bsm.c b/pimd/pim_bsm.c index b0c7a4c74e..5a194e3119 100644 --- a/pimd/pim_bsm.c +++ b/pimd/pim_bsm.c @@ -391,7 +391,7 @@ static void pim_on_g2rp_timer(struct event *t) return; } - if (rp_info->rp_src != RP_SRC_STATIC) { + if (rp_info->rp_src == RP_SRC_BSR) { /* If new rp available, change it else delete the existing */ if (bsrp) { pim_g2rp_timer_start( -- 2.39.5