Re: [Qemu-devel] scsi interface patch

2007-04-22 Thread Hetz Ben Hamo
The "standard" way to submitting patches is unified diff's (diff -u) Could you re-post your patch in unified format please? Thanks, Hetz On 4/22/07, Wang Cheng Yeh <[EMAIL PROTECTED]> wrote: The number of responded bytes from scsi device do not match the expected value of lsi53c895a driver. he

Re: [Qemu-devel] Qemu / KQemu on 64-bit (x86_64) host systems

2007-04-22 Thread Werner Dittmann
Andrzej, implemented the patch, works ok even if I removed the notsc parameter from the kernel parameter line. I did some tests with the systems, compiled quite some code - works great. I didn't make any performance tests to compare the solutins - but it looks ok preformace wise. (This is a 64bit

[Qemu-devel] Problems when trying to install suse 10.2, 64bit environment - some debug info

2007-04-22 Thread Werner Dittmann
When I try to install a openSUSE 10.2 into a Qemu system it always crashes. My system setup: Hostsystem: AMD Athlon 4200+, dual CPU openSUSE 10.2 Qemu: Latest CVS with patch regarding TSC (from Andrzej) Kqemu 1.3.0pre11 (also with patch) I try to install with -kernel-kqemu enabled to force the e

[Qemu-devel] qemu/target-sparc translate.c

2007-04-22 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/04/22 12:45:28 Modified files: target-sparc : translate.c Log message: Constification CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-sparc/translate.c?cvsroot=qemu&r1=1.51&r2=1.52

[Qemu-devel] scsi interface patch

2007-04-22 Thread Wang Cheng Yeh
I am sorry. The new attached file is created by (cvs diff -up). 2007/4/22, Hetz Ben Hamo <[EMAIL PROTECTED]>: The "standard" way to submitting patches is unified diff's (diff -u) Could you re-post your patch in unified format please? Thanks, Hetz On 4/22/07, Wang Cheng Yeh < [EMAIL PROTECTED

Re: [Qemu-devel] scsi interface patch

2007-04-22 Thread Wang Cheng Yeh
Linux kernel 2.6.18 from http://www.aurel32.net/info/debian_arm_qemu.php will get this mismatch. I don't know the real hardware implement inside scsi. I just modify the hardware emulation consist with the linux driver. Because the hardware emulation is not 100% complete and many parts are not impl

[Qemu-devel] [PATCH] BSD linking fix

2007-04-22 Thread Joachim Henke
Hello, it seems that this change: http://lists.gnu.org/archive/html/qemu-devel/2007-04/msg00023.html breaks linking in Mac OS X (PPC in my case): /usr/bin/ld: warning multiple definitions of symbol _ldexpl$LDBL128 libqemu.a(softfloat-native.o) definition of _ldexpl$LDBL128 in section (__TEXT

Re: [Qemu-devel] Re: Detecting an assembly instruction in QEMU

2007-04-22 Thread Eduardo Felipe
Hi Atif, Your code seems quite ok to me. Just try including stored_eip inside the DisasContext, otherwise you'll lose its value between calls to disas_insn function. Also make sure that the instructions you are using as markers are not executed elsewhere, as your compiler could generate them ins

Re: [Qemu-devel] scsi interface patch

2007-04-22 Thread Paul Brook
On Sunday 22 April 2007 03:01, Wang Cheng Yeh wrote: > The number of responded bytes from scsi device do not match the expected > value of lsi53c895a driver. hence, the mismatch interrupt happen, but the > driver does not always handle it correctly. > My patch make the responded bytes as expected

[Qemu-devel] qemu/fpu softfloat-native.c softfloat-native.h

2007-04-22 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/04/22 17:16:54 Modified files: fpu: softfloat-native.c softfloat-native.h Log message: Check that HOST_SOLARIS is defined before relying on its value. Spotted by Joachim H

[Qemu-devel] qemu/hw lsi53c895a.c

2007-04-22 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/04/22 17:18:38 Modified files: hw : lsi53c895a.c Log message: Typo fix, by Wang Cheng Yeh. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/hw/lsi53c895a.c?cvsroot=qemu&r1=1

[Qemu-devel] qemu/target-sparc cpu.h op.c translate.c

2007-04-22 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/04/22 19:14:52 Modified files: target-sparc : cpu.h op.c translate.c Log message: Sparc64 update: more VIS ops CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-sparc/cpu.h?cvsroot=qe

[Qemu-devel] [PATCH] Fix path mangling in linux-user/path.c

2007-04-22 Thread Lauri Leukkunen
This patch improves performance at user-mode emulation startup and fixes a nasty looping bug caused by a symlink such as /usr/bin/X11 -> ../bin I've tested this using current CVS version on debian/testing on amd64 with arm user-mode target. /lauri Index: path.c ==

[Qemu-devel] [PATCH] Make user-mode emu drop LD_PRELOAD

2007-04-22 Thread Lauri Leukkunen
This patch makes user-mode emulation drop LD_PRELOAD environment variable by default and adds an option "-keep-ld-preload" to override this behaviour. /lauri Index: linux-user/main.c === RCS file: /sources/qemu/qemu/linux-user/main.c

Re: [Qemu-devel] [PATCH] Make user-mode emu drop LD_PRELOAD

2007-04-22 Thread Paul Brook
On Sunday 22 April 2007 20:39, Lauri Leukkunen wrote: > This patch makes user-mode emulation drop LD_PRELOAD environment variable > by default and adds an option "-keep-ld-preload" to override this > behaviour. Why? Paul

Re: [Qemu-devel] [PATCH] Make user-mode emu drop LD_PRELOAD

2007-04-22 Thread Lauri Leukkunen
On 4/22/07, Paul Brook <[EMAIL PROTECTED]> wrote: On Sunday 22 April 2007 20:39, Lauri Leukkunen wrote: > This patch makes user-mode emulation drop LD_PRELOAD environment variable > by default and adds an option "-keep-ld-preload" to override this > behaviour. Why? My use case is for scratchbo

[Qemu-devel] new scsi interface patch

2007-04-22 Thread Wang Cheng Yeh
The previous patch is not correct as Paul Brook said. I read the standard and know the allocation length. And then, I find the number of length is not correct. Please review the new patch. Index: hw/scsi-disk.c === RCS file: /sources/

Re: [Qemu-devel] SunOS Testing on latest SVN snapshot

2007-04-22 Thread JmH
With the "enable-interpose" patch to open bios (Thanks Blue Swirl), Qemu can at least find the bootable potion of the installation media. Unfortunately though, the boot doesnt progress very far. I have summarised the results below: Solaris 1.0.1 (Note: SunOS 4.1.2, not 4.1.4 as below) Boot hangs