From: Thomas Huth <thuth@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>,
Fabrice Fontaine <fontaine.fabrice@gmail.com>
Cc: QEMU Trivial <qemu-trivial@nongnu.org>,
qemu-devel@nongnu.org, Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [PATCH v4] Fix build with 64 bits time_t
Date: Mon, 10 May 2021 08:05:10 +0200 [thread overview]
Message-ID: <2cc78924-90a6-2dff-e741-9e14384a4972@redhat.com> (raw)
In-Reply-To: <20201208134133-mutt-send-email-mst@kernel.org>
On 08/12/2020 19.41, Michael S. Tsirkin wrote:
> On Thu, Dec 03, 2020 at 08:58:19PM +0100, Fabrice Fontaine wrote:
>> time element is deprecated on new input_event structure in kernel's
>> input.h [1]
>>
>> This will avoid the following build failure:
>>
>> hw/input/virtio-input-host.c: In function 'virtio_input_host_handle_status':
>> hw/input/virtio-input-host.c:198:28: error: 'struct input_event' has no member named 'time'
>> 198 | if (gettimeofday(&evdev.time, NULL)) {
>> | ^
>>
>> Fixes:
>> - http://autobuild.buildroot.org/results/a538167e288c14208d557cd45446df86d3d599d5
>> - http://autobuild.buildroot.org/results/efd4474fb4b6c0ce0ab3838ce130429c51e43bbb
>>
>> [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit?id=152194fe9c3f
>>
>> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>
> Acked-by: Michael S. Tsirkin <mst@redhat.com>
>
> Gerd pls feel free to merge.
>
>> ---
>> Changes v3 -> v4 (after review of Gerd Hoffmann):
>> - Include <sys/ioctl.h>
>>
>> Changes v2 -> v3 (after review of Gerd Hoffmann):
>> - Replace include on <linux/input.h> by
>> "standard-headers/linux/input.h" to try to fix build on rhel-7
>>
>> Changes v1 -> v2 (after review of Michael S. Tsirkin):
>> - Drop define of input_event_{sec,usec} as it is already done in
>> include/standard-headers/linux/input.h
>>
>> contrib/vhost-user-input/main.c | 8 ++++++--
>> hw/input/virtio-input-host.c | 5 ++++-
>> 2 files changed, 10 insertions(+), 3 deletions(-)
>>
>> diff --git a/contrib/vhost-user-input/main.c b/contrib/vhost-user-input/main.c
>> index 6020c6f33a..b27b12733b 100644
>> --- a/contrib/vhost-user-input/main.c
>> +++ b/contrib/vhost-user-input/main.c
>> @@ -7,13 +7,14 @@
>> #include "qemu/osdep.h"
>>
>> #include <glib.h>
>> -#include <linux/input.h>
>> +#include <sys/ioctl.h>
>>
>> #include "qemu/iov.h"
>> #include "qemu/bswap.h"
>> #include "qemu/sockets.h"
>> #include "contrib/libvhost-user/libvhost-user.h"
>> #include "contrib/libvhost-user/libvhost-user-glib.h"
>> +#include "standard-headers/linux/input.h"
>> #include "standard-headers/linux/virtio_input.h"
>> #include "qapi/error.h"
>>
>> @@ -115,13 +116,16 @@ vi_evdev_watch(VuDev *dev, int condition, void *data)
>> static void vi_handle_status(VuInput *vi, virtio_input_event *event)
>> {
>> struct input_event evdev;
>> + struct timeval tval;
>> int rc;
>>
>> - if (gettimeofday(&evdev.time, NULL)) {
>> + if (gettimeofday(&tval, NULL)) {
>> perror("vi_handle_status: gettimeofday");
>> return;
>> }
>>
>> + evdev.input_event_sec = tval.tv_sec;
>> + evdev.input_event_usec = tval.tv_usec;
>> evdev.type = le16toh(event->type);
>> evdev.code = le16toh(event->code);
>> evdev.value = le32toh(event->value);
>> diff --git a/hw/input/virtio-input-host.c b/hw/input/virtio-input-host.c
>> index 85daf73f1a..137efba57b 100644
>> --- a/hw/input/virtio-input-host.c
>> +++ b/hw/input/virtio-input-host.c
>> @@ -193,13 +193,16 @@ static void virtio_input_host_handle_status(VirtIOInput *vinput,
>> {
>> VirtIOInputHost *vih = VIRTIO_INPUT_HOST(vinput);
>> struct input_event evdev;
>> + struct timeval tval;
>> int rc;
>>
>> - if (gettimeofday(&evdev.time, NULL)) {
>> + if (gettimeofday(&tval, NULL)) {
>> perror("virtio_input_host_handle_status: gettimeofday");
>> return;
>> }
>>
>> + evdev.input_event_sec = tval.tv_sec;
>> + evdev.input_event_usec = tval.tv_usec;
>> evdev.type = le16_to_cpu(event->type);
>> evdev.code = le16_to_cpu(event->code);
>> evdev.value = le32_to_cpu(event->value);
>> --
>> 2.29.2
>
>
Ping!
Did this fall through the cracks?
Anyway, whoever picks up this patch, please add this line to the commit message:
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/246
Thomas
prev parent reply other threads:[~2021-05-10 6:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-03 19:58 [PATCH v4] Fix build with 64 bits time_t Fabrice Fontaine
2020-12-08 18:41 ` Michael S. Tsirkin
2021-05-10 6:05 ` Thomas Huth [this message]
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=2cc78924-90a6-2dff-e741-9e14384a4972@redhat.com \
--to=thuth@redhat.com \
--cc=fontaine.fabrice@gmail.com \
--cc=kraxel@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.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).