RE: [Qemu-devel] Win32 MinGW build with current CVS

2006-08-03 Thread ZIGLIO, Frediano, VF-IT
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] .org] On Behalf Of Kazu Sent: giovedì 3 agosto 2006 10.25 To: qemu-devel@nongnu.org Subject: Re: [Qemu-devel] Win32 MinGW build with current CVS Sent: Thursday, August 03, 2006 12:14 PM Kazu wrote: Asynchronous I/O is implemented

RE: [Qemu-devel] Win32 MinGW build with current CVS

2006-08-03 Thread ZIGLIO, Frediano, VF-IT
Sent: Thursday, August 03, 2006 12:14 PM Kazu wrote: Asynchronous I/O is implemented by overlapped I/O for Win32 but it is not enabled. I tried to make the program. A patch attached fixs compile errors. I found some problems about it. GetFileSizeEx needs to define WINVER

RE: [Qemu-devel] Wipe patch

2006-08-02 Thread ZIGLIO, Frediano, VF-IT
ZIGLIO, Frediano, VF-IT wrote: Hi, well, this is not a definitive patch but it works. The aim is to be able to wipe the disk without allocating entire space. When you wipe a disk the program fill disk with zero bytes so disk image increase to allocate all space. This just patch

RE: [Qemu-devel] 0.8.2 and win64

2006-07-27 Thread ZIGLIO, Frediano, VF-IT
On 7/26/06, ZIGLIO, Frediano, VF-IT [EMAIL PROTECTED] wrote: Hi, as expected 0.8.2 make windows 64 works. There is however a small problem with network card. Windows 64 do not support old ne card so I used rtl8139. It seems that 8139plus card make windows enter

[Qemu-devel] Wipe patch

2006-07-26 Thread ZIGLIO, Frediano, VF-IT
Hi, well, this is not a definitive patch but it works. The aim is to be able to wipe the disk without allocating entire space. When you wipe a disk the program fill disk with zero bytes so disk image increase to allocate all space. This just patch detect null byte writes and do not write all

RE: [Qemu-devel] Wipe patch

2006-07-26 Thread ZIGLIO, Frediano, VF-IT
ZIGLIO, Frediano, VF-IT wrote: Hi, well, this is not a definitive patch but it works. The aim is to be able to wipe the disk without allocating entire space. When you wipe a disk the program fill disk with zero bytes so disk image increase to allocate all space. This just patch

RE: [Qemu-devel] Wipe patch

2006-07-26 Thread ZIGLIO, Frediano, VF-IT
Avi Kivity wrote: This _looks_ like it would severely impact cpu load during a write. Have you done any testing to determine if this is likely to impact a normal usage scenario? Why would it? In most cases, the zero test would terminate quickly, without accessing the entire

[Qemu-devel] 0.8.2 and win64

2006-07-26 Thread ZIGLIO, Frediano, VF-IT
Hi, as expected 0.8.2 make windows 64 works. There is however a small problem with network card. Windows 64 do not support old ne card so I used rtl8139. It seems that 8139plus card make windows enter in an infinite loop at shutdown. Changing pci id from 0x20 to 0x10 (that is use old 8139, not

RE: [Qemu-devel] qemu/hw rtl8139.c

2006-07-04 Thread ZIGLIO, Frediano, VF-IT
CVSROOT: /sources/qemu Module name: qemu Changes by: Fabrice Bellard bellard 06/07/04 10:08:36 Modified files: hw : rtl8139.c Log message: rtl8139 fixes (Igor Kovalenko) CVSWeb URLs:

RE: [Qemu-devel] win64

2006-06-27 Thread ZIGLIO, Frediano, VF-IT
leaving the old value... Fabrice. ZIGLIO, Frediano, VF-IT wrote: I got windows xp 64 working using current CVS. I still have problems with network, I had to use this patch Index: hw/rtl8139.c === RCS file: /sources/qemu

[Qemu-devel] win64

2006-06-26 Thread ZIGLIO, Frediano, VF-IT
I got windows xp 64 working using current CVS. I still have problems with network, I had to use this patch Index: hw/rtl8139.c === RCS file: /sources/qemu/qemu/hw/rtl8139.c,v retrieving revision 1.1 diff -u -1 -0 -r1.1 rtl8139.c ---

[Qemu-devel] [PATCH] win32 windows close

2006-06-26 Thread ZIGLIO, Frediano, VF-IT
This is an updated patch for win32. This patch fix a crash closing windows with X button. Frediano Ziglio close.diff Description: close.diff ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] [PATCH] win32 sparse and 64 bit images

2006-06-26 Thread ZIGLIO, Frediano, VF-IT
This is an update to my older patch. It enable sparse file for raw image where available (winnt and above using ntfs) It also contains an implementation for ftruncate to allow 64-bit file size. This implementation is compatible with sparse support (it do not manually fill bytes with zero but let

[Qemu-devel] [PATCH] printf and 64bit

2006-06-19 Thread ZIGLIO, Frediano, VF-IT
This patch continue my work trying to replace %lld (and similar) format strings with C99 standard (as suggested by Fabrice). Is quite long but as you can note it contains repetitive changes. Frediano Ziglio printf.diff Description: printf.diff ___

[Qemu-devel] Final path for windows close problem

2006-06-15 Thread ZIGLIO, Frediano, VF-IT
Updated patch against CVS HEAD bye Frediano Ziglio close.diff Description: close.diff ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

RE: [Qemu-devel] Sparse file support under windows

2006-06-14 Thread ZIGLIO, Frediano, VF-IT
if the filesystem supports it. Regards, Fabrice. ZIGLIO, Frediano, VF-IT wrote: Hi, this patch add sparse file support under Windows (supported on NTFS). It add a -s flag to qemu create and qemu convert. It contain also a new implementation for ftruncate witch not fill manually space

[Qemu-devel] Sparse file support under windows

2006-06-05 Thread ZIGLIO, Frediano, VF-IT
Hi, this patch add sparse file support under Windows (supported on NTFS). It add a -s flag to qemu create and qemu convert. It contain also a new implementation for ftruncate witch not fill manually space but only use SetEndOfFile (so to handle correctly sparse file) freddy77 sparse.diff

RE: [Qemu-devel] dsound and crash (2)

2006-06-05 Thread ZIGLIO, Frediano, VF-IT
Well, to sum up the problem with dsound (Windows audio driver), qemu crash when is closed using X in console window. The reason is quite complicated: - in audio/dsoundaudio.c you allocate a IDirectSound* using CoCreateInstance - in audio/audio.c AUD_init you set up a atexit

[Qemu-devel] qemu dsound and crash

2006-05-30 Thread ZIGLIO, Frediano, VF-IT
I analyzed the dsound problem (using Windows dsound audio driver cause crash when closing console window cf Qemu impressions). The problem is very complicated. Is seems that for some reasons dsound dll is unloaded before msvcrt (which hold atexit and exit function) so dsound free memory then

RE: [Qemu-devel] Qemu impressions

2006-05-26 Thread ZIGLIO, Frediano, VF-IT
Hi, this is my first mail in Qemu mailing list. I think it's a fantastic program. I'm starting using it quite a lot at home (with Linux) and at work (with Windows XP). Everything works quite well (nothing is perfect). Well, I know, reply to my mail is quite crazy but here it is... -

[Qemu-devel] Qemu impressions

2006-05-24 Thread ZIGLIO, Frediano, VF-IT
Hi, this is my first mail in Qemu mailing list. I think it's a fantastic program. I'm starting using it quite a lot at home (with Linux) and at work (with Windows XP). Everything works quite well (nothing is perfect). I'm a developer but I'm quite busy at the moment. Recently I got it compiling