From owner-cvs-src@FreeBSD.ORG  Wed Nov  3 16:22:01 2004
Return-Path: <owner-cvs-src@FreeBSD.ORG>
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP
	id 355FA16A4CE; Wed,  3 Nov 2004 16:22:01 +0000 (GMT)
Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57])
	by mx1.FreeBSD.org (Postfix) with ESMTP
	id B380043D55; Wed,  3 Nov 2004 16:21:56 +0000 (GMT)
	(envelope-from scottl@freebsd.org)
Received: from [192.168.254.11] (junior-wifi.samsco.home [192.168.254.11])
	(authenticated bits=0)
	by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id iA3GNhcv020282;
	Wed, 3 Nov 2004 09:23:43 -0700 (MST)
	(envelope-from scottl@freebsd.org)
Message-ID: <418905E5.1050605@freebsd.org>
Date: Wed, 03 Nov 2004 09:23:01 -0700
From: Scott Long <scottl@freebsd.org>
User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040929
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: Poul-Henning Kamp <phk@freebsd.org>
References: <200411031411.iA3EBIqL012134@repoman.freebsd.org>
In-Reply-To: <200411031411.iA3EBIqL012134@repoman.freebsd.org>
X-Enigmail-Version: 0.86.1.0
X-Enigmail-Supports: pgp-inline, pgp-mime
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63
X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org
cc: cvs-src@freebsd.org
cc: src-committers@freebsd.org
cc: cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/dev/em if_em.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.1
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 03 Nov 2004 16:22:01 -0000

Poul-Henning Kamp wrote:
> phk         2004-11-03 14:11:18 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/dev/em           if_em.c 
>   Log:
>   Put the "Link is up/down" printfs behind bootverbose.  gigE is not so uncommon
>   that we need to tell people about every cable in the network anymore.  It can
>   be enabled for debugging purposes with "boot -v".
>   
>   Revision  Changes    Path
>   1.51      +8 -6      src/sys/dev/em/if_em.c

I think that in general we can start eyeing a lot of similar verbosity
in all of our drivers, both at boot and at runtime.  For example most
nic drivers print out their MAC and all of their possible negotiation
rates on attach.  This same info can be obtained from ifconfig.  Why
clutter the boot with it?

Scott