From owner-freebsd-current@FreeBSD.ORG Tue Mar 10 11:55:02 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 B73FB10656EE for ; Tue, 10 Mar 2009 11:55:02 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 5FECE8FC13 for ; Tue, 10 Mar 2009 11:55:02 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id n2ABsHVu024977; Tue, 10 Mar 2009 05:54:18 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 10 Mar 2009 20:54:39 +0900 (JST) Message-Id: <20090310.205439.-1525215866.imp@bsdimp.com> To: pluknet@gmail.com From: "M. Warner Losh" In-Reply-To: References: X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-current@FreeBSD.org Subject: Re: Unable to set devclass (devname: (null) 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: Tue, 10 Mar 2009 11:55:03 -0000 In message: pluknet writes: : Hi. : : Is it ok (and how much harmfull) to see this message? : : driver bug: Unable to set devclass (devname: (null)) : : P.S. : This is introduced in subr_bus.c, v1.216 : - PDEBUG(("Unable to set device class")); : + printf("driver bug: Unable to set devclass (devname: %s)\n", : + (child ? device_get_name(child) : : + "no device")); : : where PDEBUG was moved from BUS_DEBUG to general output. I would say generally no. when do you see it? Warner