]> git.puffer.fish Git - mirror/frr.git/commitdiff
pimd: Do not warn for common occurrence in igmp code 5601/head
authorDonald Sharp <sharpd@cumulusnetworks.com>
Tue, 31 Dec 2019 20:28:29 +0000 (15:28 -0500)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Fri, 3 Jan 2020 13:41:46 +0000 (08:41 -0500)
Do not warn when we receive a multicast address that
matches 224.0.0.0/24.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
pimd/pim_igmp.c

index 54ad17a99143c065b1b8b2ff9e50c70bfc20e7db..39ef706f79c1118e11ba3b87c4bf4283aa9cb06f 100644 (file)
@@ -1113,8 +1113,10 @@ struct igmp_group *igmp_add_group_by_addr(struct igmp_sock *igmp,
        }
 
        if (pim_is_group_224_0_0_0_24(group_addr)) {
-               zlog_warn("%s: Group specified is part of 224.0.0.0/24",
-                         __PRETTY_FUNCTION__);
+               if (PIM_DEBUG_IGMP_TRACE)
+                       zlog_debug(
+                               "%s: Group specified %s is part of 224.0.0.0/24",
+                               __PRETTY_FUNCTION__, inet_ntoa(group_addr));
                return NULL;
        }
        /*