pimd: Remove some extraneous hexdump's

On every kernel upcall we are dumping the packet.  Stop that.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2016-07-13 12:46:09 -04:00
parent 3667e8a081
commit 4669ffbb00

View file

@ -314,7 +314,6 @@ int pim_mroute_msg(int fd, const char *buf, int buf_size)
pim_inet4_dump("<grp?>", ip_hdr->ip_dst, grp_str, sizeof(grp_str));
zlog_debug("%s: not a kernel upcall proto=%d src: %s dst: %s msg_size=%d",
__PRETTY_FUNCTION__, ip_hdr->ip_p, src_str, grp_str, buf_size);
//zlog_hexdump(buf, buf_size);
}
return 0;
}
@ -346,7 +345,6 @@ int pim_mroute_msg(int fd, const char *buf, int buf_size)
return pim_mroute_msg_nocache(fd, ifp, msg, src_str, grp_str);
break;
case IGMPMSG_WHOLEPKT:
zlog_hexdump(buf, buf_size);
return pim_mroute_msg_wholepkt(fd, ifp, (const char *)msg, src_str, grp_str);
break;
default: