diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-07-02 21:36:42 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-02 21:36:42 +0300 |
| commit | 1db8b179e499e32a7cd218d6acaba3244c5efaa9 (patch) | |
| tree | f01ffc1c8657708e93e3dcf8511c914d4f3e2032 /pimd/pim_igmp.c | |
| parent | c38b5275093f16cc0d3ad32fb71200a0fcf7c983 (diff) | |
| parent | 889d43b1e6a480f5afeb7d5092b7db053f833cac (diff) | |
Merge pull request #11505 from SaiGomathiN/watermark
pim6d: Fix the todo items in ipv6 watermark limit CLI
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, |
