From owner-cvs-src@FreeBSD.ORG Mon Jun 2 14:20:44 2008 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 BFA30106566B; Mon, 2 Jun 2008 14:20:44 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A6DB68FC27; Mon, 2 Jun 2008 14:20:44 +0000 (UTC) (envelope-from rwatson@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 m52EKinU056044; Mon, 2 Jun 2008 14:20:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m52EKiB2056043; Mon, 2 Jun 2008 14:20:44 GMT (envelope-from rwatson@repoman.freebsd.org) Message-Id: <200806021420.m52EKiB2056043@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rwatson@repoman.freebsd.org using -f From: Robert Watson Date: Mon, 2 Jun 2008 14:20:26 +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_subr.c tcp_timer.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, 02 Jun 2008 14:20:44 -0000 rwatson 2008-06-02 14:20:44 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c tcp_timer.c Log: SVN rev 179487 on 2008-06-02 14:20:26Z by rwatson When allocating temporary storage to hold a TCP/IP packet header template, use an M_TEMP malloc(9) allocation rather than an mbuf with mtod(9) and dtom(9). This eliminates the last use of dtom(9) in TCP. MFC after: 3 weeks Revision Changes Path 1.308 +6 -10 src/sys/netinet/tcp_subr.c 1.101 +1 -1 src/sys/netinet/tcp_timer.c