input: evdev: only allow reading events if a full packet is present
authorDima Zavin <dima@android.com>
Tue, 4 Oct 2011 23:58:03 +0000 (16:58 -0700)
committerDima Zavin <dima@android.com>
Wed, 5 Oct 2011 00:28:47 +0000 (17:28 -0700)
commit487319375187798f489ade0c4df1f14dc43aff63
treef719e0354e7ab73f345d7acd95ecc97b2198c4b6
parent4f3824a38cc706de1b3b18ff9b83cfca0ce5f49b
input: evdev: only allow reading events if a full packet is present

Without this, it was possible for the reader to get ahead of packet_head.
If the the input device generated a partial packet *right* after the
reader got ahead, then we can get into a situation where the device is
marked readable but read always returns 0 until the next packet is
finished (i.e a SYN is generated by the input driver).

This situation can also happen if we overflow the buffer while a reader
is trying to read an event out.

Change-Id: If01ab371bc7de1bf1f90c122dcc5a29242b01a09
Signed-off-by: Dima Zavin <dima@android.com>
drivers/input/evdev.c