From owner-freebsd-current@FreeBSD.ORG Mon Mar 2 04:44:56 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 709F8106566B; Mon, 2 Mar 2009 04:44:56 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id 326D28FC14; Mon, 2 Mar 2009 04:44:55 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id 61872FF94; Mon, 2 Mar 2009 17:44:55 +1300 (NZDT) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id o45m9zaC77oZ; Mon, 2 Mar 2009 17:44:47 +1300 (NZDT) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP; Mon, 2 Mar 2009 17:44:47 +1300 (NZDT) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id 1EC731142F; Mon, 2 Mar 2009 17:44:47 +1300 (NZDT) Date: Sun, 1 Mar 2009 20:44:47 -0800 From: Andrew Thompson To: Garrett Cooper Message-ID: <20090302044446.GC66136@citylink.fud.org.nz> References: <49AB4649.40906@freebsd.org> <69F972E4-D7C1-47D8-8C83-A44062DB47E1@gmail.com> <20090302043013.GA66136@citylink.fud.org.nz> <7d6fde3d0903012041l76436344o6db7660a3fa8cf37@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7d6fde3d0903012041l76436344o6db7660a3fa8cf37@mail.gmail.com> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: usb@freebsd.org, FreeBSD Current Subject: Re: ums no longer loads on CURRENT 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: Mon, 02 Mar 2009 04:44:56 -0000 On Sun, Mar 01, 2009 at 08:41:35PM -0800, Garrett Cooper wrote: > On Sun, Mar 1, 2009 at 8:30 PM, Andrew Thompson wrote: > > On Sun, Mar 01, 2009 at 07:20:03PM -0800, Garrett Cooper wrote: > >> On Mar 1, 2009, at 6:36 PM, Sam Leffler wrote: > >> > >>> Garrett Cooper wrote: > >>>> device ? ? ? ?ums ? ? ? ?# Mouse > >>> > >>> This is why you cannot kldload. ?Not sure about any functional regression. > >>> > >>> ? Sam > >> > >> ? ? ? Yeah, well that message was printed out by another process altogether > >> while loading up the kernel after the ata subsystem was brought up, so > >> something's getting confused and trying to kldload by accident... I was > >> just reproducing the message. > >> ? ? ? I'll provide more data to prove this claim when I can. > > > > I have traced this already but not looked into why, the process trying > > to (re)load ums is moused. > > > > > > Andrew > > It's being done from devd's end, but I'd really like it if the > terse messaging would go away because it confused the heck out of > me... the issue was ABI/libmap.conf related like Warner put down in > UPDATING, but I instead opened up another can of worms ;(... > Thanks, A quick look found it, static int usbmodule(void) { return (kld_isloaded("uhub/ums") || kld_load("ums") != -1); } its now called ushub/ums. It can probably be renamed back to uhub now. Andrew