svn commit: r272316 - head/sys/netinet
John Baldwin
jhb at FreeBSD.org
Tue Sep 30 17:26:35 UTC 2014
Author: jhb
Date: Tue Sep 30 17:26:34 2014
New Revision: 272316
URL: http://svnweb.freebsd.org/changeset/base/272316
Log:
Only define the full inm_print() if KTR_IGMPV3 is enabled at compile time.
Modified:
head/sys/netinet/in_mcast.c
Modified: head/sys/netinet/in_mcast.c
==============================================================================
--- head/sys/netinet/in_mcast.c Tue Sep 30 17:19:07 2014 (r272315)
+++ head/sys/netinet/in_mcast.c Tue Sep 30 17:26:34 2014 (r272316)
@@ -2928,7 +2928,7 @@ sysctl_ip_mcast_filters(SYSCTL_HANDLER_A
return (retval);
}
-#ifdef KTR
+#if defined(KTR) && (KTR_COMPILE & KTR_IGMPV3)
static const char *inm_modestrs[] = { "un", "in", "ex" };
@@ -3000,7 +3000,7 @@ inm_print(const struct in_multi *inm)
printf("%s: --- end inm %p ---\n", __func__, inm);
}
-#else /* !KTR */
+#else /* !KTR || !(KTR_COMPILE & KTR_IGMPV3) */
void
inm_print(const struct in_multi *inm)
@@ -3008,6 +3008,6 @@ inm_print(const struct in_multi *inm)
}
-#endif /* KTR */
+#endif /* KTR && (KTR_COMPILE & KTR_IGMPV3) */
RB_GENERATE(ip_msource_tree, ip_msource, ims_link, ip_msource_cmp);
More information about the svn-src-all
mailing list