Merge pull request #18053 from FRRouting/mergify/bp/dev/10.3/pr-14105

pimd: Fix for FHR mroute taking longer to age out (backport #14105)
This commit is contained in:
Donatas Abraitis 2025-02-07 16:10:46 +02:00 committed by GitHub
commit bf16e53186
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 4 deletions

View File

@ -239,10 +239,16 @@ void pim_ifchannel_delete_all(struct interface *ifp)
void delete_on_noinfo(struct pim_ifchannel *ch)
{
if (ch->local_ifmembership == PIM_IFMEMBERSHIP_NOINFO
&& ch->ifjoin_state == PIM_IFJOIN_NOINFO
&& ch->t_ifjoin_expiry_timer == NULL)
struct pim_upstream *up = ch->upstream;
/*
* (S,G) with no active traffic, KAT expires, PPT expries,
* channel state is NoInfo
*/
if (ch->local_ifmembership == PIM_IFMEMBERSHIP_NOINFO &&
ch->ifjoin_state == PIM_IFJOIN_NOINFO &&
(ch->t_ifjoin_expiry_timer == NULL || (up && !pim_upstream_is_kat_running(up)))) {
pim_ifchannel_delete(ch);
}
}
void pim_ifchannel_ifjoin_switch(const char *caller, struct pim_ifchannel *ch,

View File

@ -312,7 +312,7 @@ static void on_join_timer(struct event *t)
}
/*
* In the case of a HFR we will not ahve anyone to send this to.
* In the case of a FHR we will not ahve anyone to send this to.
*/
if (PIM_UPSTREAM_FLAG_TEST_FHR(up->flags))
return;