[Qemu-devel] Re: [PATCH] vvfat mbr fixes

2007-09-23 Thread Lorenzo Campedelli
Johannes Schindelin wrote: Hi, On Sun, 23 Sep 2007, Ivan Kalvachev wrote: I've been having problems using vvfat virtual block device. Even linux fdisk was able to find problems with it. The reason turned out to be simple, MBR have bogus parameters. Thanks for doing this; I did not find any

Re: [Qemu-devel] qemu/target-sparc exec.h op.c op_helper.c op_me...

2007-09-23 Thread Andreas Färber
Am 23.09.2007 um 01:11 schrieb Aurelien Jarno: Andreas Färber a écrit : Am 22.09.2007 um 23:41 schrieb Aurelien Jarno: Aurelien Jarno a écrit : Thanks, that's helpful, it looks like the lduba instructions is not working correctly in your case. Now I have to find why. I don't really

Re: [Qemu-devel] Re: [PATCH] vvfat mbr fixes

2007-09-23 Thread Johannes Schindelin
Hi, On Sun, 23 Sep 2007, Lorenzo Campedelli wrote: While you are working on vvfat issues, could you give a look to the attached small patch? Okay, this is what I would do: - not make this handling dependent on vvfat (but this means checking if the colon is the second character, because

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

2007-09-23 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl blueswir1 07/09/23 11:40:58 Modified files: target-sparc : op_helper.c Log message: Add missing break statements CVSWeb URLs:

[Qemu-devel] qemu/hw slavio_serial.c

2007-09-23 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl blueswir1 07/09/23 11:48:48 Modified files: hw : slavio_serial.c Log message: Fix Caps lock and Num lock handling CVSWeb URLs:

Re: [Qemu-devel] sparc32 counter/timer issues

2007-09-23 Thread Blue Swirl
On 9/22/07, Robert Reif [EMAIL PROTECTED] wrote: With the patch and ss10 boot prom I get: TIMER: write 000ff13c TIMER: write 000ff1310010 0001 TIMER: write 000ff130 TIMER: write 000ff134 TIMER: write 000ff13c 0001

[Qemu-devel] qemu cpu-all.h cpu-exec.c exec.c target-i386/cp...

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/23 15:28:04 Modified files: . : cpu-all.h cpu-exec.c exec.c target-i386: cpu.h exec.h helper.c helper2.c op.c translate.c Log message:

[Qemu-devel] qemu Changelog target-i386/svm.h

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/23 15:30:28 Modified files: . : Changelog Added files: target-i386: svm.h Log message: Add missing svm.h header, and add a Changelog entry. CVSWeb URLs:

Re: [Qemu-devel] Re: [PATCH] linux-user utimensat() syscall

2007-09-23 Thread Thiemo Seufer
Thayne Harbaugh wrote: This patch adds the utimensat syscall to linux-user. Doesn't build: gcc-3.4 -g -Wl,-T,/home/ths/qemu/qemu-work/ppc.ld -o qemu-arm main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o elfload.o linuxload.o flatload.o nwfpe/fpa11.o nwfpe/fpa11_cpdo.o

[Qemu-devel] Re: [PATCH] vvfat mbr fixes

2007-09-23 Thread Lorenzo Campedelli
Johannes Schindelin wrote: Hi, On Sun, 23 Sep 2007, Lorenzo Campedelli wrote: While you are working on vvfat issues, could you give a look to the attached small patch? Okay, this is what I would do: - not make this handling dependent on vvfat (but this means checking if the colon is the

Re: [Qemu-devel] qemu cpu-all.h cpu-exec.c exec.c target-i386/cp...

2007-09-23 Thread Fabrice Bellard
Hi, The code would be simpler if some intercept tests were done at runtime in the corresponding helpers (for crN, drN and MSR registers, I/Os). This is especially true when the existing helpers can return an exception at runtime. Complicating the translator to handle SVM is definitely not

Re: [Qemu-devel] Re: [PATCH] linux-user utimensat() syscall

2007-09-23 Thread Stuart Anderson
On Sun, 23 Sep 2007, Thiemo Seufer wrote: Thayne Harbaugh wrote: This patch adds the utimensat syscall to linux-user. Doesn't build: gcc-3.4 -g -Wl,-T,/home/ths/qemu/qemu-work/ppc.ld -o qemu-arm main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o elfload.o linuxload.o flatload.o

[Qemu-devel] qemu/target-mips translate_init.c

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/23 17:54:30 Modified files: target-mips: translate_init.c Log message: Fix mips usermode emulation. CVSWeb URLs:

[Qemu-devel] qemu/linux-user/mips termbits.h

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/23 17:55:00 Modified files: linux-user/mips: termbits.h Log message: Correct and update mips termbits.h. CVSWeb URLs:

[Qemu-devel] qemu/linux-user/mips syscall_nr.h

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/23 18:07:05 Modified files: linux-user/mips: syscall_nr.h Log message: Add new MIPS/Linux syscalls. CVSWeb URLs:

[Qemu-devel] Re: [PATCH] vvfat mbr fixes

2007-09-23 Thread Johannes Schindelin
Hi, On Sun, 23 Sep 2007, Lorenzo Campedelli wrote: I was concerned by having this handling outside of a proper place (i.e. block-vvfat.c), but if we want to leave it there, wouldn't it be better to just handle cases which would otherwise fail, and just try to fix the fat: format? I don't

[Qemu-devel] Re: [PATCH] vvfat mbr fixes

2007-09-23 Thread Lorenzo Campedelli
Johannes Schindelin wrote: Hi, On Sun, 23 Sep 2007, Lorenzo Campedelli wrote: I was concerned by having this handling outside of a proper place (i.e. block-vvfat.c), but if we want to leave it there, wouldn't it be better to just handle cases which would otherwise fail, and just try to fix

[Qemu-devel] qemu/linux-user arm/termbits.h i386/termbits.h ...

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/23 23:27:46 Modified files: linux-user/arm : termbits.h linux-user/i386: termbits.h linux-user/m68k: termbits.h linux-user/ppc : termbits.h linux-user/ppc64:

[Qemu-devel] qemu/linux-user alpha/syscall_nr.h arm/syscall_...

2007-09-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer ths 07/09/24 00:11:26 Modified files: linux-user/alpha: syscall_nr.h linux-user/arm : syscall_nr.h linux-user/i386: syscall_nr.h linux-user/m68k: syscall_nr.h