[Bug 1895305] Re: pthread_cancel fails with "RT33" with musl libc

2021-04-26 Thread Ariadne Conill
This was a downstream regression in Alpine caused by an attempt to make older Go binaries work under emulation. We have reverted the patch there. -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1895305

[PATCH-for-5.2 1/2] virtio host input: use safe 64-bit time accessors for input_event

2020-07-22 Thread Ariadne Conill
On 32-bit systems with 64-bit time_t, input_event.time is not directly accessible. Instead, we must use input_event_sec and input_event_usec accessors to set the time values. Signed-off-by: Ariadne Conill --- hw/input/virtio-input-host.c | 5 - 1 file changed, 4 insertions(+), 1 deletion

[PATCH-for-5.2 2/2] virtio user input: use safe 64-bit time accessors for input_event

2020-07-22 Thread Ariadne Conill
On 32-bit systems with 64-bit time_t, input_event.time is not directly accessible. Instead, we must use input_event_sec and input_event_usec accessors to set the time values. Signed-off-by: Ariadne Conill --- contrib/vhost-user-input/main.c | 5 - 1 file changed, 4 insertions(+), 1

Re: [PATCH] linux-user: fix translation of statx structures

2019-11-22 Thread Ariadne Conill
Hello, On Fri, Nov 22, 2019 at 12:27 PM Aleksandar Markovic wrote: > > On Fri, Nov 22, 2019 at 7:22 PM Ariadne Conill > wrote: > > > > All timestamps were copied to atime instead of to their respective > > fields. > > > > Signed-off-by: Ariadne Conill

[PATCH] linux-user: fix translation of statx structures

2019-11-22 Thread Ariadne Conill
All timestamps were copied to atime instead of to their respective fields. Signed-off-by: Ariadne Conill --- linux-user/syscall.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index ce399a55f0..171c0caef3 100644