powerpc/161045: commit references a PR
dfilter service
dfilter at FreeBSD.ORG
Thu Oct 10 04:00:01 UTC 2013
The following reply was made to PR powerpc/161045; it has been noted by GNATS.
From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at 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 at freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
More information about the freebsd-ppc
mailing list