From owner-freebsd-x11@FreeBSD.ORG Fri Mar 28 16:18:43 2008 Return-Path: Delivered-To: freebsd-x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18FE51065674; Fri, 28 Mar 2008 16:18:43 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (penna-pt.tunnel.tserv1.fmt.ipv6.he.net [IPv6:2001:470:1f00:ffff::1279]) by mx1.freebsd.org (Postfix) with ESMTP id BD2B78FC21; Fri, 28 Mar 2008 16:18:42 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from [IPv6:2001:470:1f00:2464::4] (shumai.marcuscom.com [IPv6:2001:470:1f00:2464::4]) by creme-brulee.marcuscom.com (8.14.2/8.14.2) with ESMTP id m2SGKeBF034980; Fri, 28 Mar 2008 12:20:40 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: cokane@FreeBSD.org In-Reply-To: <47ECEC78.4010200@FreeBSD.org> References: <47EA7ED2.8030406@freebsd.org> <47EB9A2B.4060203@FreeBSD.org> <47EBCED1.8060308@freebsd.org> <200803271908.34129.jkim@FreeBSD.org> <1206681177.83202.8.camel@shumai.marcuscom.com> <47ECEC78.4010200@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-7DeF927WPJuc4MpaHkl6" Organization: FreeBSD, Inc. Date: Fri, 28 Mar 2008 12:18:39 -0400 Message-Id: <1206721119.2392.12.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.22.0 FreeBSD GNOME Team Port X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,NO_RELAYS autolearn=ham version=3.2.4 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on creme-brulee.marcuscom.com Cc: freebsd-x11@FreeBSD.org, Jung-uk Kim Subject: Re: X pausing until mouse move (collecting commonalities) X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2008 16:18:43 -0000 --=-7DeF927WPJuc4MpaHkl6 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2008-03-28 at 09:02 -0400, Coleman Kane wrote: > Joe Marcus Clarke wrote: > > On Thu, 2008-03-27 at 19:08 -0400, Jung-uk Kim wrote: > > =20 > >> On Thursday 27 March 2008 12:44 pm, Joe Marcus Clarke wrote: > >> =20 > >>> Coleman Kane wrote: > >>> =20 > >>>> Coleman Kane wrote: > >>>> =20 > >>>>> Joe Marcus Clarke wrote: > >>>>> =20 > >>>>>> On Wed, 2008-03-26 at 16:54 -0400, Jung-uk Kim wrote: > >>>>>> =20 > >>>>>>> On Wednesday 26 March 2008 12:50 pm, Joe Marcus Clarke wrote: > >>>>>>> =20 > >>>>>>>> I'm trying to get a list of commonalities to better focus my > >>>>>>>> troubleshooting. So far, my two machines that are affected > >>>>>>>> have the following in common: > >>>>>>>> > >>>>>>>> GNOME 2.22 (with hald) > >>>>>>>> nVidia graphics card (though different drivers) > >>>>>>>> PS/2 mouse > >>>>>>>> dual core > >>>>>>>> ULE scheduler > >>>>>>>> > >>>>>>>> My one machine that is not affected differs from this in that > >>>>>>>> it has an Intel graphics card, USB mouse, and is not dual > >>>>>>>> core (but HTT). > >>>>>>>> > >>>>>>>> It looks like Coleman has a PS/2 mouse as well. It's > >>>>>>>> starting to look like the mouse technology might have > >>>>>>>> something to do with this. Anyone seeing this problem with a > >>>>>>>> USB mouse? > >>>>>>>> =20 > >>>>>>> I think I know why. Build xorg-server without HAL support > >>>>>>> option and the attached patch. With HAL support (default) and > >>>>>>> hald running, xorg-server auto-detects individual ports with > >>>>>>> input.mouse capability even without configuration lines in > >>>>>>> xorg.conf. If moused is enabled and USB mouse is used, > >>>>>>> /dev/ums0 is directly used because there is a problem in MD > >>>>>>> code (see attached patch). If moused is enabled and PS/2 > >>>>>>> mouse is used, you end up with two input devices via > >>>>>>> /dev/sysmouse and /dev/psm0. I couldn't find a cleaner way to > >>>>>>> fix this problem, though. :-( > >>>>>>> =20 > >>>>>> Thanks for finding this. Here is a patch for hal which adds a > >>>>>> mouse addon. The mouse addon polls to find whether or not > >>>>>> moused has a given mouse device open. If it does, it sets the > >>>>>> input device to be /dev/sysmouse instead of the actual device.=20 > >>>>>> Hopefully it will fix the problem without needing to disable > >>>>>> hal support in X. I have also merged your gettimeofday > >>>>>> patches, jkim. > >>>>>> > >>>>>> http://www.marcuscom.com/downloads/hal.diff > >>>>>> > >>>>>> Joe > >>>>>> =20 > >>>>> I had to apply the attached change to your patch in order to get > >>>>> it to work (addon/ should be addons/). Attached is the diff to > >>>>> your diff that worked for me. > >>>>> > >>>>> -- > >>>>> Coleman Kane > >>>>> =20 > >>>> Unfortunately, I still experience the same mouse-blocked behavior > >>>> after applying this patch, reinstalling the port, and then > >>>> restarting my machine (and setting the mouse device back to > >>>> SysMouse and /dev/sysmouse in xorg.conf, and re-enabling moused). > >>>> =20 > >>> Yeah. While the addon is doing its job, X now opens two instances > >>> of /dev/sysmouse :-(. I still don't know why it does this when it > >>> doesn't open two instances of /dev/psm0. > >>> =20 > >> I found why. See config/hal.c in xorg-server. It does not add Option > >> "Device" although Linux-specific and undocumented Option "Path" for > >> evdev is added. Thus default mouse device /dev/sysmouse is picked up. > >> Fortunately the bug is fixed in the latest version with the following > >> commit: > >> > >> http://cgit.freedesktop.org/xorg/xserver/commit/?id=3D47eb658e80277502= 1e3efec109f95431cca188ca > >> > >> This chunk: > >> > >> --------- > >> + /* most drivers use device.. not path. evdev uses both however, bu= t the > >> + * path version isn't documented apparently. support both for now.= */ > >> add_option(&options, "path", path); > >> + add_option(&options, "device", path); > >> --------- > >> > >> See the attached patches. > >> =20 > > > > Ah, this explains a lot. I have also updated my hal.diff with your > > correction, and some code to make sure that the mouse device is correct > > when moused is running. Local tests indicate that it should do the job= . > > > > Joe > > =20 > So, does this mean we should upgrade the sysutils/hald port (and other=20 > related ones) again? Is this in a released version? Apply http://www.marcuscom.com/downloads/hal.diff and http://people.freebsd.org/~jkim/xorg-server.diff then rebuild hal and xorg-server. Then reboot. All should be well again with moused/hal/X. Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-7DeF927WPJuc4MpaHkl6 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEABECAAYFAkftGl8ACgkQb2iPiv4Uz4fzjACfe5YLRw+Mdth8QN9yr7ptAtmF zpEAoItoZqsA/r+sBPQlV3n9ko1nxVWi =zpO7 -----END PGP SIGNATURE----- --=-7DeF927WPJuc4MpaHkl6--