All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] Fix build with 64 bits time_t
@ 2020-11-26 22:11 Fabrice Fontaine
  2020-11-27  7:18 ` Gerd Hoffmann
  0 siblings, 1 reply; 4+ messages in thread
From: Fabrice Fontaine @ 2020-11-26 22:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: Fabrice Fontaine, Gerd Hoffmann, Michael S . Tsirkin

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>
---
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 | 7 +++++--
 hw/input/virtio-input-host.c    | 5 ++++-
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/contrib/vhost-user-input/main.c b/contrib/vhost-user-input/main.c
index 6020c6f33a..83fdeb4c6d 100644
--- a/contrib/vhost-user-input/main.c
+++ b/contrib/vhost-user-input/main.c
@@ -7,13 +7,13 @@
 #include "qemu/osdep.h"
 
 #include <glib.h>
-#include <linux/input.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 +115,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



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] Fix build with 64 bits time_t
  2020-11-26 22:11 [PATCH v3] Fix build with 64 bits time_t Fabrice Fontaine
@ 2020-11-27  7:18 ` Gerd Hoffmann
  2020-11-27 22:24   ` Fabrice Fontaine
  0 siblings, 1 reply; 4+ messages in thread
From: Gerd Hoffmann @ 2020-11-27  7:18 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: qemu-devel, Michael S . Tsirkin

  Hi,

> 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

Now it complains about ioctl() not being declared.

/me suggests to create a fork @ gitlab.com and push your branch there,
that'll run it through CI and we have a centos7 build job there which
should catch this ...

take care,
  Gerd



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] Fix build with 64 bits time_t
  2020-11-27  7:18 ` Gerd Hoffmann
@ 2020-11-27 22:24   ` Fabrice Fontaine
  2020-11-30  9:18     ` Gerd Hoffmann
  0 siblings, 1 reply; 4+ messages in thread
From: Fabrice Fontaine @ 2020-11-27 22:24 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel, Michael S . Tsirkin

Hi,

Le ven. 27 nov. 2020 à 08:18, Gerd Hoffmann <kraxel@redhat.com> a écrit :
>
>   Hi,
>
> > 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
>
> Now it complains about ioctl() not being declared.
>
> /me suggests to create a fork @ gitlab.com and push your branch there,
> that'll run it through CI and we have a centos7 build job there which
> should catch this ...
I fixed the issue by including sys/ioctl.h.
However, I have a test failure due to a timeout on
check-system-centos:
https://gitlab.com/ffontaine/qemu/-/jobs/877810804
It does seem to be related to my patch. Should I send a v4 on the mailing list?
>
> take care,
>   Gerd
>
Best Regards,

Fabrice


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] Fix build with 64 bits time_t
  2020-11-27 22:24   ` Fabrice Fontaine
@ 2020-11-30  9:18     ` Gerd Hoffmann
  0 siblings, 0 replies; 4+ messages in thread
From: Gerd Hoffmann @ 2020-11-30  9:18 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: qemu-devel, Michael S . Tsirkin

  Hi,

> > /me suggests to create a fork @ gitlab.com and push your branch there,
> > that'll run it through CI and we have a centos7 build job there which
> > should catch this ...
> I fixed the issue by including sys/ioctl.h.
> However, I have a test failure due to a timeout on
> check-system-centos:
> https://gitlab.com/ffontaine/qemu/-/jobs/877810804

They timeout now and then, try re-run it.

> It does seem to be related to my patch. Should I send a v4 on the mailing list?

Yes, please.

thanks,
  Gerd



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-30  9:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-26 22:11 [PATCH v3] Fix build with 64 bits time_t Fabrice Fontaine
2020-11-27  7:18 ` Gerd Hoffmann
2020-11-27 22:24   ` Fabrice Fontaine
2020-11-30  9:18     ` Gerd Hoffmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.