From owner-cvs-src@FreeBSD.ORG Mon Jul 30 11:06:43 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C699516A419; Mon, 30 Jul 2007 11:06:43 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AC14F13C48D; Mon, 30 Jul 2007 11:06:43 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l6UB6hKA095480; Mon, 30 Jul 2007 11:06:43 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l6UB6hJ0095479; Mon, 30 Jul 2007 11:06:43 GMT (envelope-from des) Message-Id: <200707301106.l6UB6hJ0095479@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 30 Jul 2007 11:06:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_fsm.h tcp_input.c tcp_usrreq.c src/sys/netipx spx_debug.c spx_debug.h src/usr.bin/netstat ipx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2007 11:06:43 -0000 des 2007-07-30 11:06:42 UTC FreeBSD src repository Modified files: sys/netinet tcp_fsm.h tcp_input.c tcp_usrreq.c sys/netipx spx_debug.c spx_debug.h usr.bin/netstat ipx.c Log: Make tcpstates[] static, and make sure TCPSTATES is defined before is included into any compilation unit that needs tcpstates[]. Also remove incorrect extern declarations and TCPDEBUG conditionals. This allows kernels both with and without TCPDEBUG to build, and unbreaks the tinderbox. Approved by: re (rwatson) Revision Changes Path 1.20 +1 -1 src/sys/netinet/tcp_fsm.h 1.367 +0 -6 src/sys/netinet/tcp_input.c 1.160 +0 -4 src/sys/netinet/tcp_usrreq.c 1.19 +2 -0 src/sys/netipx/spx_debug.c 1.18 +0 -1 src/sys/netipx/spx_debug.h 1.27 +1 -2 src/usr.bin/netstat/ipx.c