- Bug #34501
- Comment #31
Comment 31 for bug 34501
Ok.. maybe I did it... I was experiencing the same bug and it sucked me a lot(#96596, cursor out of sync).
this is the relevant part of dmesg
...
[ 794.450212] psmouse.c: GlidePoint at isa0060/
[ 794.451978] psmouse.c: GlidePoint at isa0060/
[ 794.455045] psmouse.c: GlidePoint at isa0060/
[ 794.456556] psmouse.c: GlidePoint at isa0060/
[ 794.458622] psmouse.c: GlidePoint at isa0060/
[ 794.464386] psmouse.c: GlidePoint at isa0060/
[ 794.464392] psmouse.c: issuing reconnect request
[ 795.676077] input: PS/2 Mouse as /devices/
[ 795.740513] input: AlpsPS/2 ALPS GlidePoint as /devices/
So I did this:
sudo echo 1 > /sys/module/
Now it works well, however, when I type "cat /sys/module/
The trick is, that after "issuing reconnect request" the bug instantly dissappears. So I wanted to reset the device immediatelly. Changing to number 1 solve it.
This is the part of the driver, which I believe resets the device
psmouse->pktcnt = 0;
if (psmouse_resetafter > 0 && priv->out_of_sync == psmouse_resetafter) {
psmouse->state = PSMOUSE_IGNORE;
- serio_rescan(
+ printk(KERN_NOTICE "synaptics: issuing reconnect request\n");
+ serio_reconnect
}
I don't know, if it works for you, but if yes, write some feedback. If no, write it too :)