Re: [Qemu-devel] ARM load/store multiple bug

2006-09-10 Thread Justin Fletcher
On Sun, 10 Sep 2006, Paul Brook wrote: ---8--- if (n != 1) gen_op_addl_T1_im(-((n - 1) * 4)); } } j = 0; /* Insert something like gen_op_bicl_T1_im(3); here */

[Qemu-devel] Socket conflict with qemu?

2006-09-10 Thread Alessandro Corradi
Hi all,I write a new device that is connect via socket to a host program that emulate a small memory.I can correctly write in this memory but sometimes, when I want to read, the recv() socket function give me an error (-1 return). Do you know if there is a socket problem with qemu? Because I tried

[Qemu-devel] [PATCH] More linux i386 syscalls definition

2006-09-10 Thread Nicolas Collignon
Hello This patch adds syscall number (271 to 316) for i386 linux. I'm on the way to implement at() syscall variants (openat, mkdirat, chmodat ...). Bye Nicolas -- Person who say it cannot be done should not interrupt person doing it. Index: linux-user/i386/syscall_nr.h

[Qemu-devel] qemu vl.c

2006-09-10 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook pbrook 06/09/10 14:39:54 Modified files: . : vl.c Log message: Avoid (repeatedly) trying to read stdin after it has closed. CVSWeb URLs:

[Qemu-devel] PL110 1bpp and 2bpp fix

2006-09-10 Thread Justin Fletcher
Hiya, Tiny fix for the bit manipulation in the PL110 rendering code, hw/pl110_template.h. There is a sequence of three definitions used in the graphic routines : #define FN_2(x, y) FN(x, y) FN(x+1, y) #define FN_4(x, y) FN_2(x, y) FN_2(x+1, y) #define FN_8(y) FN_4(0, y) FN_4(4, y) In the

Re: [Qemu-devel] ARM load/store multiple bug

2006-09-10 Thread Fabrice Bellard
Note that QEMU supports specific unaligned access handling when using the softmmu code. It is possible to implement the ARM specific unaligned accesses without slowing down the aligned case. See the mips case with do_unaligned_access(). Regards, Fabrice. Justin Fletcher wrote: On Sun, 10

[Qemu-devel] qemu Makefile.target vl.h hw/sun4m.c hw/cs4231.c

2006-09-10 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard bellard 06/09/10 19:25:12 Modified files: . : Makefile.target vl.h hw : sun4m.c Added files: hw : cs4231.c Log message: dummy cs4231

[Qemu-devel] Re: Interesting QEMU + OpenVPN

2006-09-10 Thread Samuel Tardieu
Paul == Paul Brook [EMAIL PROTECTED] writes: Paul You can already bridge the host and gues using the existing Paul networking options (and/or VDE - http://vde.sf.net), without the Paul encryption overhead and without needing any special setup on the Paul guest. This is precisely what I do. When

Re: [Qemu-devel] QCOW/QCOW2 for win32

2006-09-10 Thread Jamie Lokier
Kazu wrote: Patch. http://www.h7.dion.ne.jp/~qemu-win/download/qemu-20060906-qcow.patch #ifdef QEMU_TOOL -overlapped = 0; +overlapped = FILE_ATTRIBUTE_NORMAL; #else overlapped = FILE_FLAG_OVERLAPPED; #endif I suspect the second value should be (FILE_ATTRIBUTE_NORMAL |

Re: [Qemu-devel] QCOW/QCOW2 for win32

2006-09-10 Thread Kazu
Sent: Monday, September 11, 2006 9:28 AM Jamie Lokier wrote: Kazu wrote: Patch. http://www.h7.dion.ne.jp/~qemu-win/download/qemu-20060906-qcow.patch #ifdef QEMU_TOOL -overlapped = 0; +overlapped = FILE_ATTRIBUTE_NORMAL; #else overlapped = FILE_FLAG_OVERLAPPED; #endif