From owner-freebsd-current@FreeBSD.ORG Fri Aug 25 14:48:36 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F6D816A4DA; Fri, 25 Aug 2006 14:48:36 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4045B43D77; Fri, 25 Aug 2006 14:48:27 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from zion.baldwin.cx (zion.baldwin.cx [192.168.0.7]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k7PEmJ7L076037; Fri, 25 Aug 2006 10:48:22 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-current@freebsd.org Date: Fri, 25 Aug 2006 10:31:33 -0400 User-Agent: KMail/1.9.1 References: <20060825101140.GV76666@FreeBSD.org> In-Reply-To: <20060825101140.GV76666@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608251031.34081.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [192.168.0.1]); Fri, 25 Aug 2006 10:48:24 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1728/Fri Aug 25 01:55:58 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Ian FREISLICH , Gleb Smirnoff , Andrew Thompson Subject: Re: 802.1Q vlan performance. [PATCH] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2006 14:48:36 -0000 On Friday 25 August 2006 06:11, Gleb Smirnoff wrote: > On Fri, Aug 25, 2006 at 12:04:25PM +0200, Ian FREISLICH wrote: > I> > Alternatively is there an objection to making this a kernel > I> > configuration file option as opposed to leaving it as an undocumented > I> > buried treasure? > I> > I> I see it is an option, just undocumented. > I> > I> Whitespace mangled: > I> > I> RCS file: /home/ncvs/src/sys/conf/NOTES,v > I> retrieving revision 1.1378 > I> diff -u -d -r1.1378 NOTES > I> --- /usr/src/sys/conf/NOTES 17 Aug 2006 00:37:03 -0000 1.1378 > I> +++ /usr/src/sys/conf/NOTES 25 Aug 2006 10:03:18 -0000 > I> @@ -646,6 +646,7 @@ > I> # > I> device ether #Generic Ethernet > I> device vlan #VLAN support (needs miibus) > I> +options VLAN_ARRAY #Lookup table for trunk interface > I> device wlan #802.11 support > I> device wlan_wep #802.11 WEP support > I> device wlan_ccmp #802.11 CCMP support > > I'd prefer not to put it into NOTES. When enabled, less code will > be covered by LINT. Bah, GENERIC will cover it then. All options should be in NOTES. If an option removes code and it's enabled in GENERIC, then you should put it in NOTES but comment it out. -- John Baldwin