From owner-freebsd-current@FreeBSD.ORG Fri Oct 26 06:47:01 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 360C5BFA for ; Fri, 26 Oct 2012 06:47:01 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe04.c2i.net [212.247.154.98]) by mx1.freebsd.org (Postfix) with ESMTP id A62F38FC08 for ; Fri, 26 Oct 2012 06:46:59 +0000 (UTC) X-T2-Spam-Status: No, hits=-0.2 required=5.0 tests=ALL_TRUSTED, BAYES_50 Received: from [176.74.213.204] (account mc467741@c2i.net HELO laptop015.hselasky.homeunix.org) by mailfe04.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 335590666; Fri, 26 Oct 2012 08:41:50 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org Subject: Re: ums stopped autoloading between 242082 and 242090 Date: Fri, 26 Oct 2012 08:43:27 +0200 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.8.4; amd64; ; ) References: <5089B4D9.9070601@mail.lifanov.com> <5089BE49.6090804@mail.lifanov.com> In-Reply-To: X-Face: 'mmZ:T{)),Oru^0c+/}w'`gU1$ubmG?lp!=R4Wy\ELYo2)@'UZ24N@d2+AyewRX}mAm; Yp |U[@, _z/([?1bCfM{_"B<.J>mICJCHAzzGHI{y7{%JVz%R~yJHIji`y>Y}k1C4TfysrsUI -%GU9V5]iUZF&nRn9mJ'?&>O MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201210260843.27831.hselasky@c2i.net> Cc: Garrett Cooper , Nikolai Lifanov X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 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, 26 Oct 2012 06:47:01 -0000 On Friday 26 October 2012 00:40:42 Garrett Cooper wrote: > On Thu, Oct 25, 2012 at 3:33 PM, Nikolai Lifanov > wrote: > > ... > > > HEAD, sorry > > No worries. Nothing coming to mind in the svn commits immediately, so > it might be a complex interaction issue. I would see if you could > individually roll back commits until you find the problem child. > > It could also be accidental fallout from the recent ACPI update... Hi, ums.ko is now loaded by devd and /etc/devd/usb.conf. devd must be enabled in rc.conf. Before ums was loaded by moused itself. Also see new rules in /etc/devd.conf: notify 100 { match "system" "DEVFS"; match "subsystem" "CDEV"; match "type" "CREATE"; match "cdev" "ums[0-9]+"; action "/etc/rc.d/moused quietstart $cdev"; }; notify 100 { match "system" "DEVFS"; match "subsystem" "CDEV"; match "type" "DESTROY"; match "cdev" "ums[0-9]+"; action "/etc/rc.d/moused stop $cdev"; }; Maybe mergemaster was not properly done? --HPS