[Qemu-devel] qemu vl.c

2007-05-27 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/05/28 02:29:59 Modified files: . : vl.c Log message: Fix tap device counting. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/vl.c?cvsroot=qemu&r1=1.302&r2=1.303

[Qemu-devel] qemu/target-m68k op.c translate.c

2007-05-27 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/05/28 02:20:34 Modified files: target-m68k: op.c translate.c Log message: Implement ColdFire ff1. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-m68k/op.c?cvsroot=qemu&r1=1.6&

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

2007-05-27 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/05/28 01:46:43 Modified files: target-m68k: translate.c Log message: Add diagnostic for bad opcode masks. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-m68k/translate.c?cvsro

Re: [Qemu-devel] MIPS64 problem with ethernet

2007-05-27 Thread Aurelien Jarno
On Sun, May 27, 2007 at 06:30:52AM -0500, Jason Wessel wrote: > Aurelien Jarno wrote: > >As discussed on IRC, the problem is only present on 32-bit hosts. It is > >due to the do_ddivu which is falsely implemented using lldiv and then by > >casting the result. The patch below uses / and % as on the

[Qemu-devel] qemu/hw slavio_intctl.c

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 19:42:35 Modified files: hw : slavio_intctl.c Log message: Interrupt debugging DPRINTFs CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/hw/slavio_intctl.c?cvsroot=qemu&r1=1

[Qemu-devel] qemu qemu-doc.texi hw/integratorcp.c hw/mips_r4...

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 19:41:18 Modified files: . : qemu-doc.texi hw : integratorcp.c mips_r4k.c pc.c pci.c ppc_prep.c sun4m.c Log message: New option -ne

[Qemu-devel] qemu sparc-dis.c linux-user/main.c target-i386/...

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 19:39:27 Modified files: . : sparc-dis.c linux-user : main.c target-i386: helper.c translate.c target-ppc : translate.c Log message: Spelli

[Qemu-devel] qemu/hw pcnet.c sun4m.c

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 19:38:21 Modified files: hw : pcnet.c sun4m.c Log message: Handle unconnected vlan case in lance CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pcnet.c?cvsroot=qemu&r1=

[Qemu-devel] qemu vl.c vl.h

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 19:36:43 Modified files: . : vl.c vl.h Log message: Improved sanity checking to -net options CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/vl.c?cvsroot=qemu&r1=1.301&r2=

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

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 19:36:00 Modified files: target-sparc : cpu.h op_helper.c Log message: Separate fault for code access to unassigned memory CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-spar

[Qemu-devel] qemu vl.h hw/slavio_intctl.c hw/sun4m.c

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 16:42:29 Modified files: . : vl.h hw : slavio_intctl.c sun4m.c Log message: Use qemu_irqs between CPUs and interrupt controller Fix interrupt priorit

[Qemu-devel] qemu vl.h hw/slavio_intctl.c hw/slavio_timer.c ...

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 16:37:49 Modified files: . : vl.h hw : slavio_intctl.c slavio_timer.c sun4m.c Log message: Use qemu_irq between interrupt controller and timers CVSWeb URLs:

[Qemu-devel] qemu vl.h hw/esp.c hw/pcnet.c hw/sparc32_dma.c ...

2007-05-27 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/05/27 16:36:10 Modified files: . : vl.h hw : esp.c pcnet.c sparc32_dma.c sun4m.c Log message: Use qemu_irqs between dma controllers and esp, lance CVSWeb URLs: ht

Re: [Qemu-devel] MIPS64 problem with ethernet

2007-05-27 Thread Jason Wessel
Aurelien Jarno wrote: As discussed on IRC, the problem is only present on 32-bit hosts. It is due to the do_ddivu which is falsely implemented using lldiv and then by casting the result. The patch below uses / and % as on the 64-bit host code. It is maybe slower than lldiv, but at least it gives