Re: [Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-16 Thread Stefan Weil
Am 16.05.2014 13:32, schrieb Paolo Bonzini: > Il 16/05/2014 07:00, Stefan Weil ha scritto: >> Hi, >> >> the patch breaks hard disk i/o: a 64 bit executable built with MinGW-w64 >> will no longer boot a ReactOS image (BIOS fails to detect a bootable >> disk). Booting a Linux CDROM seems to work and

Re: [Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-16 Thread Paolo Bonzini
Il 16/05/2014 07:00, Stefan Weil ha scritto: Hi, the patch breaks hard disk i/o: a 64 bit executable built with MinGW-w64 will no longer boot a ReactOS image (BIOS fails to detect a bootable disk). Booting a Linux CDROM seems to work and is indeed much faster. What about a 32-bit executable?

Re: [Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-16 Thread Stefan Weil
Am 16.05.2014 08:44, schrieb Stanislav Vorobiov: > Hi, > > Could you please provide URL to download that image so that I > could reproduce this problem ? Also, qemu command line would be nice. > > btw, I won't be able to look into this during next week, so some help > from someone else would be nic

Re: [Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-15 Thread Stanislav Vorobiov
Hi, Could you please provide URL to download that image so that I could reproduce this problem ? Also, qemu command line would be nice. btw, I won't be able to look into this during next week, so some help from someone else would be nice. I'll try to take a look later today however... On 05/16/2

Re: [Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-15 Thread Stefan Weil
Am 09.05.2014 20:57, schrieb Stefan Hajnoczi: > On Thu, May 08, 2014 at 12:47:10PM +0400, Stanislav Vorobiov wrote: >> From: Sangho Park >> >> g_poll has a problem on Windows when using >> timeouts < 10ms, in glib/gpoll.c: >> >> /* If not, and we have a significant timeout, poll again with >> * t

Re: [Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-09 Thread Stefan Hajnoczi
On Thu, May 08, 2014 at 12:47:10PM +0400, Stanislav Vorobiov wrote: > From: Sangho Park > > g_poll has a problem on Windows when using > timeouts < 10ms, in glib/gpoll.c: > > /* If not, and we have a significant timeout, poll again with > * timeout then. Note that this will return indication fo

[Qemu-devel] [PATCH v5] glib: fix g_poll early timeout on windows

2014-05-08 Thread Stanislav Vorobiov
From: Sangho Park g_poll has a problem on Windows when using timeouts < 10ms, in glib/gpoll.c: /* If not, and we have a significant timeout, poll again with * timeout then. Note that this will return indication for only * one event, or only for messages. We ignore timeouts less than * ten mil