From owner-svn-src-stable-6@FreeBSD.ORG Sun Jan 24 19:36:43 2010 Return-Path: Delivered-To: svn-src-stable-6@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9943A106568B; Sun, 24 Jan 2010 19:36:43 +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 6D1B98FC15; Sun, 24 Jan 2010 19:36:43 +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 o0OJah7X023293; Sun, 24 Jan 2010 19:36:43 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o0OJahLs023290; Sun, 24 Jan 2010 19:36:43 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <201001241936.o0OJahLs023290@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sun, 24 Jan 2010 19:36:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r202946 - in stable/6/sys: netinet netinet6 X-BeenThere: svn-src-stable-6@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 6-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jan 2010 19:36:43 -0000 Author: bz Date: Sun Jan 24 19:36:43 2010 New Revision: 202946 URL: http://svn.freebsd.org/changeset/base/202946 Log: MFC r202469: Garbage collect references to the no longer implemented tcp_fasttimo(). Modified: stable/6/sys/netinet/tcp_var.h stable/6/sys/netinet6/in6_proto.c Directory Properties: stable/6/sys/ (props changed) stable/6/sys/contrib/pf/ (props changed) stable/6/sys/dev/cxgb/ (props changed) Modified: stable/6/sys/netinet/tcp_var.h ============================================================================== --- stable/6/sys/netinet/tcp_var.h Sun Jan 24 19:23:07 2010 (r202945) +++ stable/6/sys/netinet/tcp_var.h Sun Jan 24 19:36:43 2010 (r202946) @@ -526,7 +526,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 *); void tcp_reass_init(void); Modified: stable/6/sys/netinet6/in6_proto.c ============================================================================== --- stable/6/sys/netinet6/in6_proto.c Sun Jan 24 19:23:07 2010 (r202945) +++ stable/6/sys/netinet6/in6_proto.c Sun Jan 24 19:36:43 2010 (r202946) @@ -182,7 +182,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,