[Qemu-devel] problem building qemu-0.10.6 under SUSE-11.1 (was OK under SUSE-10.3)

2009-11-15 Thread Sergei Steshenko
Hello All, I've been routinely building QEMU up to (inclusive) version 0.10.6 on my SUSE-10.3 box - in the framework of my own AppsFromScratch. Over the weekend I've upgraded to SUSE-11.1 and now the build fails with these messages: " LINK sparc64-bsd-user/qemu-sparc64 /usr/lib/libc_nonshared

Re: [Qemu-devel] [PATCH 3/3] Add test suite for json marshalling

2009-11-15 Thread Jamie Lokier
Anthony Liguori wrote: > Jamie Lokier wrote: > >Anthony Liguori wrote: > > > >>After checking that we can demarshal, marshal again and compared to > >>the expected decoded value. This doesn't work so well for floats > >>because they cannot be accurately represented in decimal but we try > >>our

Re: [Qemu-devel] [PATCH] Don't leak file descriptors

2009-11-15 Thread Jamie Lokier
Scott Tsai wrote: > On Fri, Nov 13, 2009 at 11:17 PM, Kevin Wolf wrote: > > We're leaking file descriptors to child processes. Set FD_CLOEXEC on file > > descriptors that don't need to be passed to children to stop this > > misbehaviour. > > Since qemu is a multi threaded program, how about open

[Qemu-devel] QEMU redesigned for MPI (Message Passing Interface)

2009-11-15 Thread Victor Vasilchenko
Good day, I've got an idea in my head and can't get rid of it - neither can I find any solution on web. The idea is to use the Virtualization Software with the purpose OPPOSITE to it's natural way. The practical example below will explain it completely: 1) we take 4 common modern computers - Co

[Qemu-devel] Re: [RFC] KVM Fault Tolerance: Kemari for KVM

2009-11-15 Thread Yoshiaki Tamura
Hi, Thanks for your comments! Dor Laor wrote: On 11/09/2009 05:53 AM, Fernando Luis Vázquez Cao wrote: Hi all, It has been a while coming, but we have finally started work on Kemari's port to KVM. For those not familiar with it, Kemari provides the basic building block to create a virtualizat

[Qemu-devel] QEMU 11.0 is not compiling on x86 64 bit target

2009-11-15 Thread Naresh Bhat
Hi All, I have downloaded QEMU 11.0 version and I am trying to configure and compile this on x86 64 bit architecture. But I am facing a linking error. Can anybody help me how to overcome from this link error. Thanks in advance *-Naresh Bhat* *Link Error message: * r...@x86-target-64:~/naresh/q

[Qemu-devel] Re: [PATCH] sparc32 irq clearing (guest Solaris performance+NetBSD) fix

2009-11-15 Thread Blue Swirl
On Sun, Nov 15, 2009 at 1:15 AM, Artyom Tarasenko wrote: > 2009/11/14 Blue Swirl : >> On Sat, Nov 14, 2009 at 3:03 AM, Artyom Tarasenko >> wrote: >>> According to NCR89C105 documentation >>> http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C105.txt >>> >>> Interrupts are clear

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread Blue Swirl
On Sun, Nov 15, 2009 at 11:21 PM, malc wrote: > On Sun, 15 Nov 2009, Stefan Weil wrote: > >> malc schrieb: >> > On Sun, 15 Nov 2009, Gleb Natapov wrote: > > [..snip..] > >> >> Here is a summary of my analysis of this problem: >> >> Graphics mode memory (ram 0xe000 ...) is not mapped >> in QEMU

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread malc
On Sun, 15 Nov 2009, Stefan Weil wrote: > malc schrieb: > > On Sun, 15 Nov 2009, Gleb Natapov wrote: [..snip..] > > Here is a summary of my analysis of this problem: > > Graphics mode memory (ram 0xe000 ...) is not mapped > in QEMU address space (which results in unassigned > memory writes

[Qemu-devel] [PATCH 2/2] [RFC] add emulation of at91sam9263 cpu

2009-11-15 Thread Evgeniy Dushistov
add emulation of at91sam9263 cpu, plus sdram, plus nor flash connected to this cpu Signed-off-by: Evgeniy Dushistov --- Makefile.target |2 +- hw/at91sam9.c | 695 + hw/at91sam9263_defs.h | 144 ++ 3 files changed, 840

[Qemu-devel] [PATCH 1/2] [RFC] add emulation of atmel pflash memory

2009-11-15 Thread Evgeniy Dushistov
This patch series add to qemu ability, to emulate Atmel ARM AT91SAM9263 CPU, details about this CPU you can find here: http://www.atmel.com/dyn/products/product_card.asp?part_id=4056 I used this emulation to simplify process of porting eCos OS on it. So this emulation support only part of function

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread Blue Swirl
On Sun, Nov 15, 2009 at 10:16 PM, Stefan Weil wrote: > malc schrieb: >> On Sun, 15 Nov 2009, Gleb Natapov wrote: >> >>> On Sun, Nov 15, 2009 at 06:22:40PM +0300, malc wrote: On Sun, 15 Nov 2009, Blue Swirl wrote: > On Sun, Nov 15, 2009 at 3:25 AM, malc wrote: >> debian-503-i386-

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread Stefan Weil
malc schrieb: > On Sun, 15 Nov 2009, Gleb Natapov wrote: > >> On Sun, Nov 15, 2009 at 06:22:40PM +0300, malc wrote: >>> On Sun, 15 Nov 2009, Blue Swirl wrote: >>> On Sun, Nov 15, 2009 at 3:25 AM, malc wrote: > debian-503-i386-netinst.iso when booted on a machine with `-vga > std' just

[Qemu-devel] [PATCH 6/8] Fix qemu_free use in scsi-generic.c

2009-11-15 Thread Jean-Christophe DUBOIS
scsi-generic.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/scsi-generic.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/scsi-generic.c b/hw/scsi-generic.c index 92ef771..cf56ea0 100644 --- a/hw/scsi-generic.c +++ b

[Qemu-devel] [PATCH 8/8] Fix qemu_malloc/qemu_free use in rtl8139.c

2009-11-15 Thread Jean-Christophe DUBOIS
rtl8139.c is using malloc()/free() instead of qemu_malloc()/qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/rtl8139.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/rtl8139.c b/hw/rtl8139.c index c166db0..be47f61 100644 --- a/hw/rtl8139.c +++ b/h

[Qemu-devel] [PATCH 7/8] Fix free use in xen_backend.c

2009-11-15 Thread Jean-Christophe DUBOIS
xen_backend.c is using qemu_free() instead of free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/xen_backend.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/xen_backend.c b/hw/xen_backend.c index 658ea8d..a2e408f 100644 --- a/hw/xen_backend.c +++ b/hw/xen

[Qemu-devel] [PATCH 2/8] Fix qemu_free use in baum.c

2009-11-15 Thread Jean-Christophe DUBOIS
baum.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/baum.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/baum.c b/hw/baum.c index 8a12985..10c4302 100644 --- a/hw/baum.c +++ b/hw/baum.c @@ -559,7 +559,7 @@ stati

[Qemu-devel] [PATCH 5/8] Fix qemu_free use in nseries.c

2009-11-15 Thread Jean-Christophe DUBOIS
nseries.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/nseries.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/nseries.c b/hw/nseries.c index 79f7387..0273eee 100644 --- a/hw/nseries.c +++ b/hw/nseries.c @@ -711,7 +71

[Qemu-devel] [PATCH 4/8] Fix qemu_free use in bt-l2cap.c

2009-11-15 Thread Jean-Christophe DUBOIS
bt-l2cap.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/bt-l2cap.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/bt-l2cap.c b/hw/bt-l2cap.c index 4697f52..70d731e 100644 --- a/hw/bt-l2cap.c +++ b/hw/bt-l2cap.c @@ -121

[Qemu-devel] [PATCH 3/8] Fix qemu_free use in nand.c

2009-11-15 Thread Jean-Christophe DUBOIS
nand.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/nand.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/nand.c b/hw/nand.c index 37fd524..838f8bc 100644 --- a/hw/nand.c +++ b/hw/nand.c @@ -507,9 +507,9 @@ void nand

[Qemu-devel] [PATCH 1/8] Fix qemu_free use in acpi.c

2009-11-15 Thread Jean-Christophe DUBOIS
acpi.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS --- hw/acpi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/acpi.c b/hw/acpi.c index dcc2c86..9a69e7d 100644 --- a/hw/acpi.c +++ b/hw/acpi.c @@ -920,7 +920,7 @@ int acpi_ta

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread malc
On Sun, 15 Nov 2009, Gleb Natapov wrote: > On Sun, Nov 15, 2009 at 06:22:40PM +0300, malc wrote: > > On Sun, 15 Nov 2009, Blue Swirl wrote: > > > > > On Sun, Nov 15, 2009 at 3:25 AM, malc wrote: > > > > > > > > debian-503-i386-netinst.iso when booted on a machine with `-vga std' > > > > just >

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread Gleb Natapov
On Sun, Nov 15, 2009 at 06:22:40PM +0300, malc wrote: > On Sun, 15 Nov 2009, Blue Swirl wrote: > > > On Sun, Nov 15, 2009 at 3:25 AM, malc wrote: > > > > > > debian-503-i386-netinst.iso when booted on a machine with `-vga std' just > > > shows black screen (after bios' setup screen) > > > > Just

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread malc
On Sun, 15 Nov 2009, Blue Swirl wrote: > On Sun, Nov 15, 2009 at 3:25 AM, malc wrote: > > > > debian-503-i386-netinst.iso when booted on a machine with `-vga std' just > > shows black screen (after bios' setup screen) > > Just some observations: > - if you press enter, installer starts and Linux

[Qemu-devel] Re: [RFC] KVM Fault Tolerance: Kemari for KVM

2009-11-15 Thread Dor Laor
On 11/13/2009 01:48 PM, Yoshiaki Tamura wrote: Hi, Thanks for your comments! Dor Laor wrote: On 11/09/2009 05:53 AM, Fernando Luis Vázquez Cao wrote: Hi all, It has been a while coming, but we have finally started work on Kemari's port to KVM. For those not familiar with it, Kemari provides

[Qemu-devel] [PATCH] experimental sh4 host support V2

2009-11-15 Thread Magnus Damm
From: Magnus Damm This is V2 of the QEMU sh4 host support patch. The code is of a somewhat experimental nature, which means that only the bare essentials are in place. The sh4 host support has been tested with the sh4 target inside the QEMU sh4 user space emulator. Only tiny assembly snippets ha

[Qemu-devel] Re: [RFC] KVM Fault Tolerance: Kemari for KVM

2009-11-15 Thread Avi Kivity
On 11/09/2009 05:53 AM, Fernando Luis Vázquez Cao wrote: Kemari runs paired virtual machines in an active-passive configuration and achieves whole-system replication by continuously copying the state of the system (dirty pages and the state of the virtual devices) from the active node to the pas

Re: [Qemu-devel] Standard vga breakage

2009-11-15 Thread Blue Swirl
On Sun, Nov 15, 2009 at 3:25 AM, malc wrote: > > debian-503-i386-netinst.iso when booted on a machine with `-vga std' just > shows black screen (after bios' setup screen) Just some observations: - if you press enter, installer starts and Linux is able to fix the display - the screen is fine with

Re: [Qemu-devel] Stack corruption problem with SeaBIOS/gPXE under QEMU

2009-11-15 Thread Naphtali Sprei
Kevin O'Connor wrote: > Hi, > > On Thu, Nov 12, 2009 at 01:20:58PM +0200, Naphtali Sprei wrote: >> I've found a problem with the usage of SeaBIOS/gPXE in Qemu. The >> scenario is when failing to boot from network and falling back to >> booting from hard-disk (-boot nc). The cause of the problem