svn commit: r267801 - head/sys/netinet6

Hajimu UMEMOTO ume at FreeBSD.org
Mon Jun 23 16:27:30 UTC 2014


Author: ume
Date: Mon Jun 23 16:27:29 2014
New Revision: 267801
URL: http://svnweb.freebsd.org/changeset/base/267801

Log:
  Make nd6_gctimer tunable.
  
  MFC after:	1 week

Modified:
  head/sys/netinet6/nd6.c

Modified: head/sys/netinet6/nd6.c
==============================================================================
--- head/sys/netinet6/nd6.c	Mon Jun 23 15:43:27 2014	(r267800)
+++ head/sys/netinet6/nd6.c	Mon Jun 23 16:27:29 2014	(r267801)
@@ -2369,6 +2369,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