svn commit: r268054 - stable/9/sys/netinet6

Hajimu UMEMOTO ume at FreeBSD.org
Mon Jun 30 17:04:56 UTC 2014


Author: ume
Date: Mon Jun 30 17:04:55 2014
New Revision: 268054
URL: http://svnweb.freebsd.org/changeset/base/268054

Log:
  MFC r267801: Make nd6_gctimer tunable.

Modified:
  stable/9/sys/netinet6/nd6.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet6/nd6.c
==============================================================================
--- stable/9/sys/netinet6/nd6.c	Mon Jun 30 17:03:32 2014	(r268053)
+++ stable/9/sys/netinet6/nd6.c	Mon Jun 30 17:04:55 2014	(r268054)
@@ -2281,6 +2281,8 @@ SYSCTL_NODE(_net_inet6_icmp6, ICMPV6CTL_
 	CTLFLAG_RD, nd6_sysctl_prlist, "");
 SYSCTL_VNET_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_MAXQLEN, nd6_maxqueuelen,
 	CTLFLAG_RW, &VNET_NAME(nd6_maxqueuelen), 1, "");
+SYSCTL_VNET_INT(_net_inet6_icmp6, OID_AUTO, nd6_gctimer,
+	CTLFLAG_RW, &VNET_NAME(nd6_gctimer), (60 * 60 * 24), "");
 
 static int
 nd6_sysctl_drlist(SYSCTL_HANDLER_ARGS)


More information about the svn-src-all mailing list