[Qemu-devel] possible pic misbehaviour

2006-05-21 Thread Herbert Poetzl
Hi Folks! I started to play around with installing NEXT/OPENSTEP last week and despite some postings stating that it works 'somewhat' I encountered several issues so far ... the good news (for me) is that I could resolve all of them and have it running quite fine. now to the topic ... one thing

[Qemu-devel] Problem with non 4gb CS and TSS

2006-05-21 Thread Sylvain Dupont
Hello, I hope it's the good place to post this. We've been developping a small OS for a school assignment. There seems to be a problem if you switch tss on a non 4GB segment. It gives a General protection fault exception (0D) I traced the exception in GDB and it appears to be raised here in swi

[Qemu-devel] Ne2000 patch(2nd try)

2006-05-21 Thread Han, Zhu
Hi, Fabrice, Would you please check in the second part of the patch? I have answered your comment in my previous mail! See the following information!: Hi, Fabrice! For your first comment, I have to say it's not a bug in the current OS. It's caused by the difference between ne2000's emulation an

Re: [Qemu-devel] QEMU 0.8.1 VNC: Segfault on closing

2006-05-21 Thread Michael McConnell
On Sun, 21 May 2006, Anthony Liguori wrote: > Michael McConnell wrote: > > On Sun, 21 May 2006, Anthony Liguori wrote: > > > > > >> Michael McConnell wrote: > >> > >>> When I try to use QEMU's VNC server, every time I close the connection it > >>> segfaults. So far I've been unable to tra

Re: [Qemu-devel] QEMU 0.8.1 VNC: Segfault on closing

2006-05-21 Thread Anthony Liguori
Michael McConnell wrote: On Sun, 21 May 2006, Anthony Liguori wrote: Michael McConnell wrote: When I try to use QEMU's VNC server, every time I close the connection it segfaults. So far I've been unable to trace the cause of this (gdb appears to be next to useless at tracing the execu

[Qemu-devel] qemu/hw esp.c

2006-05-21 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Branch: Changes by: Paul Brook <[EMAIL PROTECTED]> 06/05/21 22:20:04 Modified files: hw : esp.c Log message: Don't clear DMA status register when loading address. CVSWeb URLs: http://cvs.savannah.gnu.or

[Qemu-devel] Dedicated host

2006-05-21 Thread kadil
has anyone thought of building a dedicated/ minimal host for the purpose of running multiple qemu instances? Providing only the necesary daemons and management tools to configure/install/launch/backup the instances. Kim ___ Qemu-devel mailing list Qem

Re: [Qemu-devel] [PATCH 1/5] single step with no IRQs and timers

2006-05-21 Thread Jason Wessel
Daniel, Here is the revised patch (against CVS HEAD 5/21/06). The docs are updated as well. signed-off-by: [EMAIL PROTECTED] Cheers, Jason. Daniel Jacobowitz wrote: Hi Jason, Not that I'm always good about this myself, but could I ask you to follow this paragraph from the GDB manual, sinc

Re: [Qemu-devel] QEMU 0.8.1 VNC: Segfault on closing

2006-05-21 Thread Michael McConnell
On Sun, 21 May 2006, Anthony Liguori wrote: > Michael McConnell wrote: > > When I try to use QEMU's VNC server, every time I close the connection it > > segfaults. So far I've been unable to trace the cause of this (gdb appears > > to be next to useless at tracing the execution), but it is totall

Re: [Qemu-devel] QEMU 0.8.1 VNC: Segfault on closing

2006-05-21 Thread Anthony Liguori
Michael McConnell wrote: When I try to use QEMU's VNC server, every time I close the connection it segfaults. So far I've been unable to trace the cause of this (gdb appears to be next to useless at tracing the execution), but it is totally repeatable. Can you provide more information? Wha

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

2006-05-21 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Branch: Changes by: Paul Brook <[EMAIL PROTECTED]> 06/05/21 16:30:16 Modified files: . : Makefile.target vl.c vl.h hw : pc.c ppc_chrp.c ppc_prep.c usb-hub.c usb-uhci.c

[Qemu-devel] QEMU 0.8.1 VNC: Segfault on closing

2006-05-21 Thread Michael McConnell
When I try to use QEMU's VNC server, every time I close the connection it segfaults. So far I've been unable to trace the cause of this (gdb appears to be next to useless at tracing the execution), but it is totally repeatable. Running with kqemu 1.3.0pre7 in -kernel-kqemu with Windows XP as the

Re: [Qemu-devel] [PATCH 1/5] single step with no IRQs and timers

2006-05-21 Thread Daniel Jacobowitz
On Sat, May 20, 2006 at 04:01:10PM -0500, Jason Wessel wrote: > +case 'q': > +/* parse any 'q' packets here */ > +if (!strcmp(p,"sstepbits")) { Hi Jason, Not that I'm always good about this myself, but could I ask you to follow this paragraph from the GDB manual, since these a

RE: [Qemu-devel] [PATCH 1/5] single step with no IRQs and timers

2006-05-21 Thread Wessel, Jason
The patch is completely arch independent and should work with any of the targets that use the gdb-stub. Cheers, Jason. > -Original Message- > From: Mulyadi Santosa [mailto:[EMAIL PROTECTED] > Sent: Sunday, May 21, 2006 1:54 AM > To: qemu-devel@nongnu.org; Wessel, Jason > Subject: Re: [Q

[Qemu-devel] qemu/hw pci.c

2006-05-21 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Branch: Changes by: Paul Brook <[EMAIL PROTECTED]> 06/05/21 13:45:10 Modified files: hw : pci.c Log message: Use lookup table for PCI class descriptions. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs

[Qemu-devel] qemu/hw esp.c

2006-05-21 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Branch: Changes by: Paul Brook <[EMAIL PROTECTED]> 06/05/21 12:46:31 Modified files: hw : esp.c Log message: ESP DMA fix. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/hw/esp.c.diff?tr1=1.6

[Qemu-devel] [PATCH] cocoa.m: fix missing type declarations

2006-05-21 Thread Joachim Henke
In the function header of 'CustomApplicationMain', the types of 'argc' and 'argv' are not declared so gcc expects them to be int, which is of course wrong for 'argv'. We can safely remove these parameters since they are not used in the function, and are globally available in 'gArgc' and 'gArgv'