From owner-svn-src-projects@FreeBSD.ORG Thu Feb 10 12:47:00 2011 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEABE106564A; Thu, 10 Feb 2011 12:47:00 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id AB2CB8FC14; Thu, 10 Feb 2011 12:47:00 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 570C746B09; Thu, 10 Feb 2011 07:47:00 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.10]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 8883E8A02B; Thu, 10 Feb 2011 07:46:59 -0500 (EST) From: John Baldwin To: Jeff Roberson Date: Thu, 10 Feb 2011 07:45:12 -0500 User-Agent: KMail/1.13.5 (FreeBSD/7.4-CBSD-20110107; KDE/4.4.5; amd64; ; ) References: <201102100005.p1A05B8w002402@svn.freebsd.org> In-Reply-To: <201102100005.p1A05B8w002402@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201102100745.12090.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.6 (bigwig.baldwin.cx); Thu, 10 Feb 2011 07:46:59 -0500 (EST) X-Virus-Scanned: clamav-milter 0.96.3 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=0.5 required=4.2 tests=BAYES_00,MAY_BE_FORGED, RDNS_DYNAMIC autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bigwig.baldwin.cx Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r218501 - in projects/ofed/head/sys: amd64/conf conf net ofed/drivers/infiniband/ulp/ipoib ofed/drivers/infiniband/ulp/sdp ofed/include/linux X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Feb 2011 12:47:01 -0000 On Wednesday, February 09, 2011 7:05:11 pm Jeff Roberson wrote: > Author: jeff > Date: Thu Feb 10 00:05:11 2011 > New Revision: 218501 > URL: http://svn.freebsd.org/changeset/base/218501 > > Log: > - Change ofed from a device line to an options line in the config so that > we can test for it in the link layer address table to avoid the overhead > when it is not compiled. > - Introduce some more ofed configuration options so you don't have to > manually edit headers to enable debugging etc. > - Fix a bug with ipoib, when cm mode is enabled checksumming doesn't > work on all cards. > - Ignore the linux admin flag for cm enabled, if it's compiled in, use it > when the remote host supports it. > - Support transmitting mbufs with more than one sg entry in ipoib cm. > - Normalize the MTU settings and document whether they include the header > or not in the ipoib.h file where the variables are defined. FYI, if you'd rather keep 'ofed' as a device, there is a "feature" of config(8) that you can declare a 'DEV_' option in sys/conf/options and config(8) will enable that option if 'device foo' is in the kernel config. For example, 'device apic' enables the 'DEV_APIC' option. -- John Baldwin