svn commit: r202941 - in stable/7/sys: netinet netinet6

Bjoern A. Zeeb bz at FreeBSD.org
Sun Jan 24 18:18:53 UTC 2010


Author: bz
Date: Sun Jan 24 18:18:52 2010
New Revision: 202941
URL: http://svn.freebsd.org/changeset/base/202941

Log:
  MFC r202469:
    Garbage collect references to the no longer implemented tcp_fasttimo().
  
  Approved by:	re (kib)

Modified:
  stable/7/sys/netinet/tcp_var.h
  stable/7/sys/netinet6/in6_proto.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/netinet/tcp_var.h
==============================================================================
--- stable/7/sys/netinet/tcp_var.h	Sun Jan 24 18:16:38 2010	(r202940)
+++ stable/7/sys/netinet/tcp_var.h	Sun Jan 24 18:18:52 2010	(r202941)
@@ -534,7 +534,6 @@ int	 tcp_ctloutput(struct socket *, stru
 struct tcpcb *
 	 tcp_drop(struct tcpcb *, int);
 void	 tcp_drain(void);
-void	 tcp_fasttimo(void);
 void	 tcp_init(void);
 void	 tcp_fini(void *);
 char 	*tcp_log_addrs(struct in_conninfo *, struct tcphdr *, void *,

Modified: stable/7/sys/netinet6/in6_proto.c
==============================================================================
--- stable/7/sys/netinet6/in6_proto.c	Sun Jan 24 18:16:38 2010	(r202940)
+++ stable/7/sys/netinet6/in6_proto.c	Sun Jan 24 18:18:52 2010	(r202941)
@@ -164,7 +164,6 @@ struct ip6protosw inet6sw[] = {
 	.pr_ctloutput =		tcp_ctloutput,
 #ifndef INET	/* don't call initialization and timeout routines twice */
 	.pr_init =		tcp_init,
-	.pr_fasttimo =		tcp_fasttimo,
 	.pr_slowtimo =		tcp_slowtimo,
 #endif
 	.pr_drain =		tcp_drain,


More information about the svn-src-all mailing list