Date: Thu, 10 Oct 2013 04:00:01 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: freebsd-ppc@FreeBSD.org Subject: Re: powerpc/161045: commit references a PR Message-ID: <201310100400.r9A401Ze034188@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR powerpc/161045; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: powerpc/161045: commit references a PR Date: Thu, 10 Oct 2013 03:57:54 +0000 (UTC) Author: jhibbits Date: Thu Oct 10 03:57:47 2013 New Revision: 256252 URL: http://svnweb.freebsd.org/changeset/base/256252 Log: MFC r255921 Fix powerpc/161045. ams_poll() needs to return that any data is available, not just a new packet. PR: powerpc/161045 Modified: stable/9/sys/dev/adb/adb_mouse.c Directory Properties: stable/9/sys/ (props changed) stable/9/sys/dev/ (props changed) Modified: stable/9/sys/dev/adb/adb_mouse.c ============================================================================== --- stable/9/sys/dev/adb/adb_mouse.c Thu Oct 10 03:50:23 2013 (r256251) +++ stable/9/sys/dev/adb/adb_mouse.c Thu Oct 10 03:57:47 2013 (r256252) @@ -471,7 +471,8 @@ ams_poll(struct cdev *dev, int events, s mtx_lock(&sc->sc_mtx); if (sc->xdelta == 0 && sc->ydelta == 0 && - sc->buttons == sc->last_buttons) { + sc->buttons == sc->last_buttons && + sc->packet_read_len == 0) { selrecord(p, &sc->rsel); events = 0; } else { _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310100400.r9A401Ze034188>