From owner-svn-src-stable@FreeBSD.ORG Sun Jan 24 18:18:53 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 476EC1065693; Sun, 24 Jan 2010 18:18:53 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 358A68FC1B; Sun, 24 Jan 2010 18:18:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o0OIIrD3005894; Sun, 24 Jan 2010 18:18:53 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o0OIIrOK005891; Sun, 24 Jan 2010 18:18:53 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <201001241818.o0OIIrOK005891@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sun, 24 Jan 2010 18:18:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r202941 - in stable/7/sys: netinet netinet6 X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jan 2010 18:18:53 -0000 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,