mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 00:06:09 +00:00
pimd: Modifying member of pim_instance to accomodate IPv6 changes
Modifying igmp_group_count of struct pim_instance to gm_group_count which is to be used for both IGMP and MLD. Signed-off-by: Sai Gomathi N <nsaigomathi@vmware.com>
This commit is contained in:
parent
1823510862
commit
8934215f65
@ -1129,11 +1129,11 @@ static void igmp_show_groups(struct pim_instance *pim, struct vty *vty, bool uj)
|
||||
|
||||
if (uj) {
|
||||
json = json_object_new_object();
|
||||
json_object_int_add(json, "totalGroups", pim->igmp_group_count);
|
||||
json_object_int_add(json, "totalGroups", pim->gm_group_count);
|
||||
json_object_int_add(json, "watermarkLimit",
|
||||
pim->gm_watermark_limit);
|
||||
} else {
|
||||
vty_out(vty, "Total IGMP groups: %u\n", pim->igmp_group_count);
|
||||
vty_out(vty, "Total IGMP groups: %u\n", pim->gm_group_count);
|
||||
vty_out(vty, "Watermark warn limit(%s): %u\n",
|
||||
pim->gm_watermark_limit ? "Set" : "Not Set",
|
||||
pim->gm_watermark_limit);
|
||||
|
@ -1008,12 +1008,11 @@ 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->gm_watermark_limit) {
|
||||
++pim_ifp->pim->gm_group_count;
|
||||
if (pim_ifp->pim->gm_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,
|
||||
pim_ifp->pim->gm_group_count,
|
||||
VRF_LOGNAME(pim_ifp->pim->vrf));
|
||||
}
|
||||
|
||||
@ -1023,13 +1022,13 @@ static void igmp_group_count_incr(struct pim_interface *pim_ifp)
|
||||
|
||||
static void igmp_group_count_decr(struct pim_interface *pim_ifp)
|
||||
{
|
||||
if (pim_ifp->pim->igmp_group_count == 0) {
|
||||
if (pim_ifp->pim->gm_group_count == 0) {
|
||||
zlog_warn("Cannot decrement igmp group count below 0(vrf: %s)",
|
||||
VRF_LOGNAME(pim_ifp->pim->vrf));
|
||||
return;
|
||||
}
|
||||
|
||||
--pim_ifp->pim->igmp_group_count;
|
||||
--pim_ifp->pim->gm_group_count;
|
||||
}
|
||||
|
||||
void igmp_group_delete(struct gm_group *group)
|
||||
|
@ -173,7 +173,7 @@ struct pim_instance {
|
||||
int gm_socket;
|
||||
struct thread *t_gm_recv;
|
||||
|
||||
unsigned int igmp_group_count;
|
||||
unsigned int gm_group_count;
|
||||
unsigned int gm_watermark_limit;
|
||||
unsigned int keep_alive_time;
|
||||
unsigned int rp_keep_alive_time;
|
||||
|
Loading…
Reference in New Issue
Block a user