[Qemu-devel] [PATCH] mips-user socket-related syscall support

2006-06-19 Thread Raphaël Rigo
Hello, this patch is a revamped version of the one I posted about 2 months ago, it is much better. It implements the syscalls related to sockets on the MIPS platform (because it has no socketcall syscall). I had to create a socket.h file defining the constants for the targets because MIPS doesn't

[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] [PATCH] Bug in target-i386/helper.c:helper_fxam_ST0

2006-06-19 Thread Julian Seward
I've been doing some instruction set testing on i386-softmmu, with the aim of seeing if I can find any anomalies which might be the cause the of Win2K SP4 installation failure. helper_fxam_ST0 doesn't correctly distinguish infinities from nans, and thereby causes programs that use the x86

Re: [Qemu-devel] VMX Wizard

2006-06-19 Thread Joe Lee
wayne tempel wrote: Hey Everybody, What's up? Wayne here, anyway I found something interesting that I thought that I would share, it's freeware, it's called VMX Wizard, for making virtual machines. You can download it at : rhysgoodwin.orcon.net.nz/vmxwizard/

Re: [Qemu-devel] VMX Wizard

2006-06-19 Thread Joe Lee
wayne tempel wrote: Hey Everybody, What's up? Wayne here, anyway I found something interesting that I thought that I would share, it's freeware, it's called VMX Wizard, for making virtual machines. You can download it at : rhysgoodwin.orcon.net.nz/vmxwizard/

Re: [Qemu-devel] [PATCH] Add mips-user signal handling

2006-06-19 Thread Raphaël Rigo
Jamie Lokier wrote: Raphaël Rigo wrote: Hello, this patch adds signal handling for mips-user (and mipsel also). However it doesn't implement setup_rt_frame, but it seems it is not used a lot, so the current patch should support the vast majority of applications. Note that some web

[Qemu-devel] [RFC] [PATCH] TSS ljmp issues

2006-06-19 Thread malc
QEMU does not correctly handle jumps to TSS segments, the code in switch_tss loads new eflags, but cc_op is never set to CC_OP_EFLAGS. The problem manifests itself when trying to run DJGPP binaries compressed with UPX. It goes something like this: sub esi, 0FFFCh

[Qemu-devel] [RFC] [PATCH] TSS ljmp issues (fwd)

2006-06-19 Thread malc
Sorry about previous e-mail, my mail client decided to ambush me. QEMU does not correctly handle jumps to TSS segments, the code in switch_tss loads new eflags, but cc_op is never set to CC_OP_EFLAGS. The problem manifests itself when trying to run DJGPP binaries compressed with UPX. It goes

[Qemu-devel] qemu/target-i386 helper.c

2006-06-19 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard bellard 06/06/19 22:06:13 Modified files: target-i386: helper.c Log message: switch_tss eflags restore fix (malc) CVSWeb URLs:

[Qemu-devel] [PATCH] Increase default qcow cluster size to 4KB

2006-06-19 Thread Anthony Liguori
Regards, Anthony Liguori # HG changeset patch # User Anthony Liguori [EMAIL PROTECTED] # Node ID 76bb5704c9afe3fb930e81e13fd6de57b452ff5c # Parent 4fcb5f2d8d8646e56ddb2f6bac4d457b66fdb8ab Change default cluster size for qcow disks to 4KB. This size makes it much easier for implementing

Re: [Qemu-devel] [PATCH] mips-user socket-related syscall support

2006-06-19 Thread Fabrice Bellard
Hi, Is it really needed to duplicate socket.h ? What are the differences for mips ? Regards, Fabrice. Raphaël Rigo wrote: Hello, this patch is a revamped version of the one I posted about 2 months ago, it is much better. It implements the syscalls related to sockets on the MIPS platform

[Qemu-devel] qemu/tests test-i386.c

2006-06-19 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard bellard 06/06/19 22:42:57 Modified files: tests : test-i386.c Log message: fxam test CVSWeb URLs:

[Qemu-devel] qemu/target-i386 helper.c

2006-06-19 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard bellard 06/06/19 22:43:38 Modified files: target-i386: helper.c Log message: fxam fix (Julian Seward) CVSWeb URLs:

Re: [Qemu-devel] SystemC hw simulation in qemu

2006-06-19 Thread Fabrice Bellard
Alessandro Corradi wrote: Hi all, I've tried to create my simple hw and it's ok. Now my teacher tells me that i must use a hw description written in SystemC and plug in Qemu. Have you got any idea to do it? Can somebody link me to documents where I can find info? Hi, If you do that I am

Re: [Qemu-devel] [PATCH] mips-user socket-related syscall support

2006-06-19 Thread Fabrice Bellard
Another point is that doing: +target_long args[6]; + +tputl(args, arg1); +tputl(args+1, arg2); +tputl(args+2, arg3); +tputl(args+3, arg4); +tputl(args+4, arg5); +tputl(args+5, arg6); at the start of every syscall is not acceptable. You should add a specific socket