From: "Henrik Rydberg" <rydberg@euromail.se>
To: Daniel Kurtz <djkurtz@chromium.org>
Cc: dmitry.torokhov@gmail.com, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Input: evdev - use monotonic clock for event timestamps
Date: Mon, 3 Oct 2011 11:06:41 +0200 [thread overview]
Message-ID: <20111003090641.GA5615@polaris.bitmath.org> (raw)
In-Reply-To: <1317624200-9762-1-git-send-email-djkurtz@chromium.org>
Hi Daniel,
> Using wallclock time for event timestamps subjects inter-event timing to
> ntp and other clock adjustments. This complicates userspace drivers
> that use these timestamps to calculate velocities, or while processing
> state transitions.
>
> Instead, use the kernel monotonic clock for event timestamps, which is
> at least guaranteed never to go backwards.
>
> Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
> ---
> drivers/input/evdev.c | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c
> index 4cf2534..118f936 100644
> --- a/drivers/input/evdev.c
> +++ b/drivers/input/evdev.c
> @@ -94,8 +94,11 @@ static void evdev_event(struct input_handle *handle,
> struct evdev *evdev = handle->private;
> struct evdev_client *client;
> struct input_event event;
> + struct timespec now;
>
> - do_gettimeofday(&event.time);
> + getrawmonotonic(&now);
> + event.time.tv_sec = now.tv_sec;
> + event.time.tv_usec = now.tv_nsec/1000;
> event.type = type;
> event.code = code;
> event.value = value;
> --
> 1.7.3.1
Good thing per se, but reporting time relative to boot instead of
using real time, for all input events, may cause regression on some
obscure systems. Perhaps it is possible to improve on the desired
monotonicity in most cases, without such a drastic change.
Thanks,
Henrik
next prev parent reply other threads:[~2011-10-03 9:01 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-03 6:43 [PATCH] Input: evdev - use monotonic clock for event timestamps Daniel Kurtz
2011-10-03 9:06 ` Henrik Rydberg [this message]
2011-10-05 7:55 ` Daniel Kurtz
2011-10-05 9:23 ` Henrik Rydberg
2011-10-05 14:35 ` Chase Douglas
2011-10-06 3:42 ` Dmitry Torokhov
2011-10-06 6:25 ` Daniel Kurtz
2011-10-07 6:36 ` Dmitry Torokhov
2011-10-07 11:05 ` Henrik Rydberg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20111003090641.GA5615@polaris.bitmath.org \
--to=rydberg@euromail.se \
--cc=djkurtz@chromium.org \
--cc=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).