From owner-freebsd-current@FreeBSD.ORG Thu Mar 12 01:33:16 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 866B1106566B for ; Thu, 12 Mar 2009 01:33:16 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.234]) by mx1.freebsd.org (Postfix) with ESMTP id 4590C8FC18 for ; Thu, 12 Mar 2009 01:33:16 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by rv-out-0506.google.com with SMTP id f6so309722rvb.43 for ; Wed, 11 Mar 2009 18:33:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:date:to:subject :message-id:reply-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=7ZgMcoz5R5pgML8DhGuBKyrAwAbXaXxs6GMxVBpIG98=; b=Cipo6D+R71bRl+GHtT0QxtAkHo56pFfti2F+biE2XLlPcwr712XISiAdHU1beFMg1W RkTqtEPbpd1uAUpK83jgpfHphJuh4+dqfPpegl9eD5qiiKFomfaCLK7/905vV9q3jWrA iJPTrdK9svshfhv+D5Znk2ypSr7B+GDoszNto= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:date:to:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=FZEWie2/MaNZ6mo3K9E1aOAgavWPZZreJdX+Rpc/k3yxiQyX9her4ovJBQ5fvEchxv sXuH9f7PCosU+WR+bclgAntVzZdZhpZWt2eT3SWiem8d5NPis1NfsT+mcovP8s5DvcCD uXFEf+OAPg68M3cV2aCN2jJCOFnm7+uvcAjRY= Received: by 10.141.62.9 with SMTP id p9mr3940657rvk.86.1236821595949; Wed, 11 Mar 2009 18:33:15 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ([114.111.62.249]) by mx.google.com with ESMTPS id k2sm327362rvb.4.2009.03.11.18.33.12 (version=SSLv3 cipher=RC4-MD5); Wed, 11 Mar 2009 18:33:14 -0700 (PDT) Received: by michelle.cdnetworks.co.kr (sSMTP sendmail emulation); Thu, 12 Mar 2009 10:32:00 +0900 From: Pyun YongHyeon Date: Thu, 12 Mar 2009 10:32:00 +0900 To: freebsd-current@FreeBSD.org Message-ID: <20090312013200.GD13527@michelle.cdnetworks.co.kr> References: <20090303004146.GB82725@michelle.cdnetworks.co.kr> <20090303075925.GD82725@michelle.cdnetworks.co.kr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090303075925.GD82725@michelle.cdnetworks.co.kr> User-Agent: Mutt/1.4.2.3i Cc: Subject: Re: CFT: txp(4) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2009 01:33:16 -0000 On Tue, Mar 03, 2009 at 04:59:25PM +0900, Pyun YongHyeon wrote: > On Tue, Mar 03, 2009 at 09:41:46AM +0900, Pyun YongHyeon wrote: > > > > Hi, > > > > Here is drop-in replacement txp(4) for all architectures. I think > > I've fixed all known issues such as controller hang under heavy > > network load, missing link state transition handling etc. If you > > ever suffered from instability of txp(4) please give it a try and > > let me know how it goes. Testing on systems with more than 4GB > > memory was not done due to lack of hardwares. ATM it was tested on > > i386 and sparc64. > > > > Note, txp(4) now downloads firmware in interface up time so it may > > take longer time to initialize the interface than that of stock > > version. This change was made to ensure correct operation of > > hardware and to support WOL. > > > > Install : Download the following files and rebuild kernel. > > > > For CURRENT : > > http://people.freebsd.org/~yongari/txp/if_txp.c > > http://people.freebsd.org/~yongari/txp/if_txpreg.h > > > > For 7.1-RELEASE and stable/7 : > > http://people.freebsd.org/~yongari/txp/if_txp.c > > http://people.freebsd.org/~yongari/txp/if_txpreg.h > > http://people.freebsd.org/~yongari/txp/3c990img.h > > > > There was a typo in multicasting filter code and I updated if_txp.c. > If you already downloaded the file please fetch again. > For a record, I've committed overhauled txp(4) to HEAD(r189714).