From owner-cvs-all@FreeBSD.ORG Mon Sep 1 15:54:25 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69A991065671; Mon, 1 Sep 2008 15:54:25 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id 3EB668FC26; Mon, 1 Sep 2008 15:54:25 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from trouble.errno.com (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id m81FsKtY084528 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 1 Sep 2008 08:54:24 -0700 (PDT) (envelope-from sam@freebsd.org) Message-ID: <48BC102C.3080508@freebsd.org> Date: Mon, 01 Sep 2008 08:54:20 -0700 From: Sam Leffler Organization: FreeBSD Project User-Agent: Thunderbird 2.0.0.9 (X11/20071125) MIME-Version: 1.0 To: Kip Macy References: <200809010531.m815VOf0085178@repoman.freebsd.org> In-Reply-To: <200809010531.m815VOf0085178@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DCC-sonic.net-Metrics: ebb.errno.com; whitelist Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cxgb/ulp/toecore toedev.c src/sys/netinet tcp_offload.c toedev.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 01 Sep 2008 15:54:25 -0000 Kip Macy wrote: > kmacy 2008-09-01 05:30:22 UTC > > FreeBSD src repository > > Modified files: > sys/dev/cxgb/ulp/toecore toedev.c > sys/netinet tcp_offload.c toedev.h > Log: > SVN rev 182591 on 2008-09-01 05:30:22Z by kmacy > > Don't check if an interface can do tcp offload if there are no offload devices registered on the system. > > This appears to have an unrelated change as well: > /* > * Look up the route used for the connection to > * determine if it uses an interface capable of > * offloading the connection. > */ > - rt = rtalloc1(nam, 1 /*report*/, 0 /*ignflags*/); > + rt = rtalloc1(nam, 0 /*report*/, 0 /*ignflags*/); > if (rt) > RT_UNLOCK(rt); > else > Was that intentional? Sam