From owner-svn-src-head@FreeBSD.ORG Thu Sep 2 18:27:42 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF981106570D; Thu, 2 Sep 2010 18:27:42 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from mail-pv0-f182.google.com (mail-pv0-f182.google.com [74.125.83.182]) by mx1.freebsd.org (Postfix) with ESMTP id 623548FC14; Thu, 2 Sep 2010 18:27:42 +0000 (UTC) Received: by pvg4 with SMTP id 4so328973pvg.13 for ; Thu, 02 Sep 2010 11:27:41 -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:cc :subject:message-id:reply-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=m0aFOCp8cBbflnSqyoiZM/pWLhWMNL1BcayJn9pp6vM=; b=IGxT3pxNMJdr+C2Q1PegfJxo/UJ5KvZskRoKDY4oFU/R5opJI4eGdMgo8lrU7I/R/H eKvRRH0U2F0z2RfX9gadvwWEEBefJNZk4BPzF7Fi76EQwgkWDkHqgMu0uPXf5tEKWXt2 FRicMje8y1w7ch3H+lb4YbjuNJI0j5JyrpHFs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=GL9QW4edHJdMsj0fmEkE4dqVj/WD9n1dDMnWuirQAtT9dCm8xMyZeJ7y6CHYC7Akbm MKCqEajIMvuslYyBbfaFc4ZieHFM4p8l0oFW3AE7h97EyTEkTjr+2p482v2ogxLPRG2y rbLiQG/OLhwya/+u3KPaoP5P9sKQlntdsT6hI= Received: by 10.114.131.2 with SMTP id e2mr153278wad.158.1283452041974; Thu, 02 Sep 2010 11:27:21 -0700 (PDT) Received: from pyunyh@gmail.com ([174.35.1.224]) by mx.google.com with ESMTPS id d38sm1500271wam.8.2010.09.02.11.27.18 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 02 Sep 2010 11:27:19 -0700 (PDT) Received: by pyunyh@gmail.com (sSMTP sendmail emulation); Thu, 2 Sep 2010 11:26:52 -0700 From: Pyun YongHyeon Date: Thu, 2 Sep 2010 11:26:52 -0700 To: Pyun YongHyeon Message-ID: <20100902182652.GB21940@michelle.cdnetworks.com> References: <201009021810.o82IABBH014565@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201009021810.o82IABBH014565@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r212157 - head/sys/dev/sis X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 18:27:42 -0000 On Thu, Sep 02, 2010 at 06:10:11PM +0000, Pyun YongHyeon wrote: > Author: yongari > Date: Thu Sep 2 18:10:11 2010 > New Revision: 212157 > URL: http://svn.freebsd.org/changeset/base/212157 > > Log: > Unlike most other controllers, NS DP83815/DP83816 controllers seem > to pad with 0xFF when it encounter short frames. According to RFC > 1042 the pad bytes should be 0x00. > Because manual padding consumes extra CPU cycles, introduce a new > tunable which controls the padding behavior. Turning this tunable > on will have driver pad manually but it's disabled by default. Users > can enable software padding by setting the following tunable to > non-zero value. > > dev.sis.%d.manual_pad="1" > > PR: kern/35422 (patch not used) Opps, it should be read kern/35442.