From 2d581e604771771dd63946cbed17d6b7ec79bd9d Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 14 Jun 2009 20:42:33 +0000 Subject: add the 'goldfish' target, useful for experimenting with virtual phone hardware (includes the emulator) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16459 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...-Use-monotonic-time-for-event-time-stamps.patch | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 target/linux/goldfish/patches-2.6.30/0088-Input-Use-monotonic-time-for-event-time-stamps.patch (limited to 'target/linux/goldfish/patches-2.6.30/0088-Input-Use-monotonic-time-for-event-time-stamps.patch') diff --git a/target/linux/goldfish/patches-2.6.30/0088-Input-Use-monotonic-time-for-event-time-stamps.patch b/target/linux/goldfish/patches-2.6.30/0088-Input-Use-monotonic-time-for-event-time-stamps.patch new file mode 100644 index 000000000..6ca183ca7 --- /dev/null +++ b/target/linux/goldfish/patches-2.6.30/0088-Input-Use-monotonic-time-for-event-time-stamps.patch @@ -0,0 +1,31 @@ +From 474db0e1425f8da03a7d49ebba1602efa503c73f Mon Sep 17 00:00:00 2001 +From: =?utf-8?q?Arve=20Hj=C3=B8nnev=C3=A5g?= +Date: Fri, 17 Oct 2008 15:28:08 -0700 +Subject: [PATCH 088/134] Input: Use monotonic time for event time stamps. +MIME-Version: 1.0 +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: 8bit + +Since wall time can jump backwards, it cannot be used to determine if one +event occured before another or for how long a key was pressed. + +Signed-off-by: Arve Hjønnevåg +--- + drivers/input/evdev.c | 5 ++++- + 1 files changed, 4 insertions(+), 1 deletions(-) + +--- a/drivers/input/evdev.c ++++ b/drivers/input/evdev.c +@@ -74,8 +74,11 @@ static void evdev_event(struct input_han + struct evdev *evdev = handle->private; + struct evdev_client *client; + struct input_event event; ++ struct timespec ts; + +- do_gettimeofday(&event.time); ++ ktime_get_ts(&ts); ++ event.time.tv_sec = ts.tv_sec; ++ event.time.tv_usec = ts.tv_nsec / NSEC_PER_USEC; + event.type = type; + event.code = code; + event.value = value; -- cgit v1.2.3