From owner-cvs-all@FreeBSD.ORG Wed Jun 2 16:05:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B413D16A4F7; Wed, 2 Jun 2004 16:05:16 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1712143D4C; Wed, 2 Jun 2004 16:05:16 -0700 (PDT) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 5DDF05C85E; Wed, 2 Jun 2004 16:05:13 -0700 (PDT) Date: Thu, 3 Jun 2004 01:05:13 +0200 From: Maxime Henrion To: Nate Lawson Message-ID: <20040602230513.GH9228@elvis.mu.org> References: <20040602225238.65F6716A4D7@hub.freebsd.org> <20040602155611.P37538@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040602155611.P37538@root.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fxp if_fxp.c if_fxpvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Wed, 02 Jun 2004 23:05:18 -0000 Nate Lawson wrote: > On Wed, 2 Jun 2004, Maxime Henrion wrote: > > mux 2004/06/02 15:52:18 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/fxp if_fxp.c if_fxpvar.h > > Log: > > Use the device sysctl tree instead of rolling our own. Some of the > > sysctls were global (hw.fxp_rnr and hw.fxp_noflow), all of them are > > now per-device. Sample output of "sysctl dev.fxp0" with this patch, > > with the standard %foo nodes removed : > > > > dev.fxp0.int_delay: 1000 > > dev.fxp0.bundle_max: 6 > > dev.fxp0.rnr: 0 > > dev.fxp0.noflow: 0 > > > > Revision Changes Path > > 1.213 +18 -24 src/sys/dev/fxp/if_fxp.c > > 1.31 +2 -2 src/sys/dev/fxp/if_fxpvar.h > > Is there a way of suppressing printing the %foo nodes besides grep -v? Not that I know of, I used grep -v for this example. Cheers, Maxime