diff options
| author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-06-30 01:17:26 -0700 | 
|---|---|---|
| committer | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-06-30 01:49:54 -0700 | 
| commit | 229a20e2adaadfce5a196428439d92c19d35711e (patch) | |
| tree | f0f30570f8bcb2792188d659637373109d86522d /pimd/pim_igmp.c | |
| parent | fd878267a3c2bb88c638ac0bef7e389b8e39fea7 (diff) | |
pimd: Modifying member of pim_instance to accomodate IPv6 changes
Modifying igmp_watermark_limit of struct pim_instance
to gm_watermark_limit which is to be used for both IGMP and MLD.
Signed-off-by: Sai Gomathi N <nsaigomathi@vmware.com>
Diffstat (limited to 'pimd/pim_igmp.c')
| -rw-r--r-- | pimd/pim_igmp.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_igmp.c b/pimd/pim_igmp.c index 849216af62..6ffeeb9657 100644 --- a/pimd/pim_igmp.c +++ b/pimd/pim_igmp.c @@ -1009,8 +1009,8 @@ static void igmp_group_count_incr(struct pim_interface *pim_ifp)  	uint32_t group_count = listcount(pim_ifp->gm_group_list);  	++pim_ifp->pim->igmp_group_count; -	if (pim_ifp->pim->igmp_group_count -	    == pim_ifp->pim->igmp_watermark_limit) { +	if (pim_ifp->pim->igmp_group_count == +	    pim_ifp->pim->gm_watermark_limit) {  		zlog_warn(  			"IGMP group count reached watermark limit: %u(vrf: %s)",  			pim_ifp->pim->igmp_group_count,  | 
