Re: [Qemu-devel] [PATCH 4/5] backdoor: [softmmu] Add QEMU-side proxy to "libbackdoor.a"

2011-09-29 Thread Lluís Vilanova
Blue Swirl writes: > 2011/9/29 Lluís Vilanova : >> +static uint64_t control_io_read(void *opaque, target_phys_addr_t addr, >> unsigned size) >> +{ >> +    State *s = opaque; >> + >> +    uint64_t res = ldq_p(&s->size); >> +    uint8_t *resb = (uint8_t*)&res; >> +    return resb[addr % CTRL_BYTES]

Re: [Qemu-devel] [PATCH 4/5] backdoor: [softmmu] Add QEMU-side proxy to "libbackdoor.a"

2011-09-29 Thread Frans de Boer
On 09/29/2011 11:49 PM, Lluís Vilanova wrote: Blue Swirl writes: 2011/9/29 Lluís Vilanova: +static uint64_t control_io_read(void *opaque, target_phys_addr_t addr, unsigned size) +{ +State *s = opaque; + +uint64_t res = ldq_p(&s->size); +uint8_t *resb = (uint8_t*)&res; +return

Re: [Qemu-devel] [PATCH 4/5] backdoor: [softmmu] Add QEMU-side proxy to "libbackdoor.a"

2011-09-29 Thread Frans de Boer
On 09/29/2011 11:49 PM, Lluís Vilanova wrote: Blue Swirl writes: 2011/9/29 Lluís Vilanova: +static uint64_t control_io_read(void *opaque, target_phys_addr_t addr, unsigned size) +{ +State *s = opaque; + +uint64_t res = ldq_p(&s->size); +uint8_t *resb = (uint8_t*)&res; +return

[Qemu-devel] buildbot failure in qemu on default_x86_64_rhel5

2011-09-29 Thread qemu
The Buildbot has detected a new failure on builder default_x86_64_rhel5 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/default_x86_64_rhel5/builds/24 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: kraxel_rhel5 Build

[Qemu-devel] [PATCH] tcg: Use the GDB JIT debugging interface.

2011-09-29 Thread Richard Henderson
This allows us to generate unwind info for the dynamicly generated code in the code_gen_buffer. Only i386 is converted at this point. Signed-off-by: Richard Henderson --- elf.h |1 + exec.c|9 +++ tcg/i386/tcg-target.c | 125 +

Re: [Qemu-devel] [PATCH] [ARM] Fix sp804 dual-timer

2011-09-29 Thread Peter Chubb
Thanks Peter! Here's a reworked patch. From 7af8e24d6cbd9170a206b6aaac164e3934312b7c Mon Sep 17 00:00:00 2001 From: David Mirabito Date: Fri, 24 Jul 2009 11:43:14 +1000 Subject: [PATCH 53/57] Fix sp804 read/write for second timer. Properly implement the dual-timer read/write for the sp804 dual

[Qemu-devel] [Bug 855633] Re: guest boots up too slowly

2011-09-29 Thread Yongjie Ren
I used the default 'memory/queue' branch when I filed this bug. The master tree doesn't have these two bugs, and I'll mark the bugs as invalid. Mark as invalid. ** Changed in: qemu Status: New => Invalid -- You received this bug notification because you are a member of qemu- devel-ml, wh

[Qemu-devel] [Bug 855664] Re: 64-bit windows guest cannot boot up

2011-09-29 Thread Yongjie Ren
I used the default 'memory/queue' branch when I filed this bug. The master tree doesn't have this bug. Mark as invalid. ** Changed in: qemu Status: New => Invalid -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.la

Re: [Qemu-devel] When do we need to do TB unchaining?

2011-09-29 Thread 陳韋任
Hi, Blue > I don't think it is possible. The only non-device cases for x86 are > tb_invalidate_phys_page_range(), cpu_x86_set_a20() and > do_inject_x86_mce(), none of which should be reachable from user > emulator. > > Maybe these should be #ifdeffed out from user emulator builds. I am not sur

Re: [Qemu-devel] [PATCH 1/3] pseries: Support SMT systems for KVM Book3S-HV

2011-09-29 Thread David Gibson
On Thu, Sep 29, 2011 at 03:17:11PM +0200, Alexander Graf wrote: > On 29.09.2011, at 08:45, David Gibson wrote: [snip] > > diff --git a/hw/spapr.c b/hw/spapr.c > > index b118975..ba9ae1c 100644 > > --- a/hw/spapr.c > > +++ b/hw/spapr.c > > @@ -29,6 +29,9 @@ > > #include "elf.h" > > #include "net.h"

[Qemu-devel] ESXi on qemu/kvm

2011-09-29 Thread chaitanya lala
Hi, I am trying to run VMWare ESXi 4.1 Update 1 under qemu/kvm as a guest OS. It's an experiment to see if it is at-all possible. I am facing a problem where I see a guest OS crash at initial boot-up. My questions are - - Is VMWare ESX/ESXi supported as a guest OS ? - If not, Is there any plan t

Re: [Qemu-devel] [FYI] Soft feature freeze for 1.0 is 10/15 (three weeks away)

2011-09-29 Thread Stefan Berger
On 09/21/2011 08:34 PM, Anthony Liguori wrote: For any major feature that you're targeting to the next release, you should: # Make sure that you've posted a patch series to qemu-devel # Write a Feature page on the qemu.org wiki describing the feature and the motivation # On the release pla

Re: [Qemu-devel] [PATCH 3/3] pseries: Use Book3S-HV TCE acceleration capabilities

2011-09-29 Thread David Gibson
On Thu, Sep 29, 2011 at 03:29:59PM +0200, Alexander Graf wrote: > On 29.09.2011, at 08:45, David Gibson wrote: [snip] > > +int kvmppc_remove_spapr_tce(void *table, int fd, uint32_t window_size) > > Hrm. Is this ever called somewhere? Not yet. It will be needed when we refactor the TCE bypass sup

[Qemu-devel] [PATCH] virtio: Add PCI memory BAR in addition to PIO BAR

2011-09-29 Thread David Gibson
Currently, virtio devices are usually presented to the guest as an emulated PCI device, virtio_pci. Although the actual IO operations are done through system memory, the configuration of the virtio device is done through the one PCI IO space BAR that virtio_pci presents. But PCI IO space (aka PIO

Re: [Qemu-devel] [PATCH 1/2] Introduce tracing for 9p pdu handlers

2011-09-29 Thread Aneesh Kumar K.V
On Thu, 29 Sep 2011 18:09:48 +0530, Harsh Prateek Bora wrote: > Plan is to replace the existing debug infrastructure with Qemu tracing > infrastructure so that user can dynamically enable/disable trace events and > therefore a meaningful trace log can be generated which can be further > filtered

Re: [Qemu-devel] [PATCH 2/2] Remove virtio-9p-debug.* infra since we are using Qemu Tracing now.

2011-09-29 Thread Aneesh Kumar K.V
On Thu, 29 Sep 2011 18:09:49 +0530, Harsh Prateek Bora wrote: > Removing the existing debug infrastrucure as proposed to be replaced by > Qemu Tracing infrastructure. > > Signed-off-by: Harsh Prateek Bora virtio-9p-debug give a symbolic name for different 9p operation. Can you add a simple tra

[Qemu-devel] [PATCH v2 2/2] ppc/e500_pci: Fix an array overflow issue

2011-09-29 Thread Liu Yu
When access PPCE500_PCI_IW1 the previous index get overflow. The patch fix the issue and update all to keep consistent style. Signed-off-by: Liu Yu --- v2: also apply idx for outbound to keep consistent style. hw/ppce500_pci.c | 38 ++ 1 files changed, 22 i

[Qemu-devel] [PATCH 1/2] ppc/e500_pci: Fix code style

2011-09-29 Thread Liu Yu
Put trailing statements on next line. Signed-off-by: Liu Yu --- hw/ppce500_pci.c | 76 +++-- 1 files changed, 56 insertions(+), 20 deletions(-) diff --git a/hw/ppce500_pci.c b/hw/ppce500_pci.c index 2db365d..0ece422 100644 --- a/hw/ppce500_pci.c

Re: [Qemu-devel] [PATCH] pseries: Update SLOF firmware image

2011-09-29 Thread David Gibson
On Thu, Sep 29, 2011 at 12:31:39PM +0200, Paolo Bonzini wrote: > On 09/29/2011 06:19 AM, David Gibson wrote: > >This patch updates the SLOF submodule and recompiled image. The new > >SLOF versions contains two changes of note: > > > > * The previous SLOF has a bug in SCSI condition handling that

Re: [Qemu-devel] [PATCH 11/22] i8259: Update IRQ state after reset

2011-09-29 Thread Jan Kiszka
On 2011-09-29 21:45, Blue Swirl wrote: > On Wed, Sep 28, 2011 at 9:18 PM, Jan Kiszka wrote: >> On 2011-09-28 20:01, Blue Swirl wrote: >>> >>> On Wed, Sep 28, 2011 at 11:00 AM, Jan Kiszka >>> wrote: As we clearly modify the PIC state on pic_reset, we also have to update the IRQ outp

[Qemu-devel] [PATCH v2 21/22] monitor: Restrict pic/irq_info to supporting targets

2011-09-29 Thread Jan Kiszka
From: Jan Kiszka Signed-off-by: Jan Kiszka --- Changes in v2: - keep slavio_intctl local, introduce sun4m_pic/irq_info instead hw/an5206.c | 10 -- hw/arm_pic.c| 11 --- hw/cris_pic_cpu.c |6 -- hw/etraxfs.h|1 + hw/lm

<    1   2