From owner-cvs-all@FreeBSD.ORG Wed Aug 13 01:46:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2722537B401; Wed, 13 Aug 2003 01:46:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B111043FD7; Wed, 13 Aug 2003 01:46:55 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7D8kt0U013023; Wed, 13 Aug 2003 01:46:55 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7D8ktdt013022; Wed, 13 Aug 2003 01:46:55 -0700 (PDT) Message-Id: <200308130846.h7D8ktdt013022@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 13 Aug 2003 01:46:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 08:46:56 -0000 harti 2003/08/13 01:46:55 PDT FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: A number of patches in the last years have created new return paths in tcp_input that leave the function before hitting the tcp_trace function call for the TCPDEBUG option. This has made TCPDEBUG mostly useless (and tools like ports/benchmarks/dbs not working). Add tcp_trace calls to the return paths that could be identified in this maze. This is a NOP unless you compile with TCPDEBUG. Revision Changes Path 1.208 +21 -0 src/sys/netinet/tcp_input.c