Re: [Qemu-devel] [PATCH] configure: Fix bad shell expression for non-Linux hosts

2011-07-30 Thread Wolfgang Mauerer
On 29/07/11 22:40, Stefan Weil wrote: With vhost_net= (most non-Linux hosts), configure prints an error message: test: 2551: =: unexpected operator Fix this and similar code by adding the missing . Cc: Wolfgang Mauerer wolfgang.maue...@siemens.com Cc: Stefan Hajnoczi

Re: [Qemu-devel] [RFC] Introduce vm_stop_permanent()

2011-07-30 Thread Blue Swirl
On Thu, Jul 28, 2011 at 9:22 PM, Luiz Capitulino lcapitul...@redhat.com wrote: On Thu, 28 Jul 2011 20:04:58 +0200 Jan Kiszka jan.kis...@web.de wrote: On 2011-07-28 20:00, Luiz Capitulino wrote: On Thu, 28 Jul 2011 19:52:31 +0200 Jan Kiszka jan.kis...@web.de wrote: On 2011-07-28 19:48,

Re: [Qemu-devel] [PATCH] Fix forcing multicast msgs to loopback on OpenBSD.

2011-07-30 Thread Blue Swirl
On Sat, Jul 30, 2011 at 2:15 AM, Brad b...@comstyle.com wrote: Fix forcing multicast msgs to loopback on OpenBSD. e.g. $ sudo qemu -m 128 -no-fd-bootchk \        -hda virtual.img -boot n -nographic \        -net nic,vlan=0,model=rtl8139,macaddr=52:54:00:12:34:03 \        -net user -tftp

Re: [Qemu-devel] [PATCH 0/2] SPARC64: implement %fprs register dirty bits

2011-07-30 Thread Blue Swirl
Thanks, applied all. On Sat, Jul 23, 2011 at 5:20 AM, Tsuneo Saito tsnsa...@gmail.com wrote: Implement %fprs.DU/DL bits. The FPU sets %fprs.DL and %fprs.DU when values are assigned to %f0-31 and %f32-63 respectively. The first patch fixes problems that are found when adding the lines for

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Blue Swirl
On Mon, Jul 25, 2011 at 8:22 PM, Artyom Tarasenko atar4q...@gmail.com wrote: clear interrupt request if the interrupt priority CPU pil clear hardware interrupt request if interrupts are disabled Signed-off-by: Artyom Tarasenko atar4q...@gmail.com ---  hw/sun4u.c |    6 --  1 files

Re: [Qemu-devel] [PATCH V2 1/2] [SLIRP] Simple ARP table

2011-07-30 Thread Jan Kiszka
On 2011-07-29 19:34, Jan Kiszka wrote: On 2011-07-29 18:25, Fabien Chouteau wrote: This patch adds a simple ARP table in Slirp and also adds handling of gratuitous ARP requests. Signed-off-by: Fabien Chouteau chout...@adacore.com --- Makefile.objs |2 +- slirp/arp_table.c | 50

Re: [Qemu-devel] [PATCH V2 1/2] [SLIRP] Simple ARP table

2011-07-30 Thread Jan Kiszka
On 2011-07-30 11:09, Jan Kiszka wrote: On 2011-07-29 19:34, Jan Kiszka wrote: On 2011-07-29 18:25, Fabien Chouteau wrote: This patch adds a simple ARP table in Slirp and also adds handling of gratuitous ARP requests. Signed-off-by: Fabien Chouteau chout...@adacore.com --- Makefile.objs

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Blue Swirl
On Thu, Jul 28, 2011 at 5:44 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Thu, Jul 28, 2011 at 3:40 PM,  tsnsa...@gmail.com wrote: At Thu, 28 Jul 2011 14:50:57 +0200, Artyom Tarasenko wrote: On Thu, Jul 28, 2011 at 2:03 PM,  tsnsa...@gmail.com wrote: At Thu, 28 Jul 2011 13:51:08 +0200,

[Qemu-devel] [PATCH 00/15] sdl: Usability improvements

2011-07-30 Thread Jan Kiszka
As SDL is my preferred way of working ad-hoc with guests, I had a closer look at oddities and shortcomings that this GUI exposed, at least here on Linux hosts. The result is a series of patches I've now finally polished and completed. Highlights: - fix termination in -no-shutdown mode - fix

[Qemu-devel] [PATCH 01/15] sdl: Fix termination in -no-shutdown mode

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Just like the monitor does, we need to clear no_shutdown before calling qemu_system_shutdown_request on quit requests. Otherwise, QEMU just stops the VM. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c |4 +++- 1 files changed, 3

Re: [Qemu-devel] [PATCH] v6 revamp acpitable parsing and allow to specify complete (headerful) table

2011-07-30 Thread Blue Swirl
Thanks, applied. On Fri, Jul 29, 2011 at 4:49 AM, Isaku Yamahata yamah...@valinux.co.jp wrote: On Fri, Jul 15, 2011 at 07:51:43PM +0300, Blue Swirl wrote: On Fri, Jul 15, 2011 at 6:18 PM, John Baboval john.babo...@virtualcomputer.com wrote: Is there something I can do to help take this patch

[Qemu-devel] [PATCH 12/15] sdl: Dynamically grab input in absolute mouse mode

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Not grabbing the input means that special keys like ALT+TAB are still handled by the host. Improve the usability by grabbing input once the mouse is inside the guest screen, provided the SDL window has the input focus. Release it again when the mouse is

[Qemu-devel] [PATCH 10/15] sdl: Never release input while in full screen mode

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com It's confusing to suddenly find two mice in full screen mode when switching consoles or accidentally hitting the grab hot keys. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-)

[Qemu-devel] [PATCH 03/15] sdl: Avoid redundant scaling deactivation

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Prevents screen flickering. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ui/sdl.c b/ui/sdl.c index 9a92b47..1563ee1 100644 --- a/ui/sdl.c +++ b/ui/sdl.c @@

[Qemu-devel] [PATCH 09/15] sdl: Consistently avoid grabbing input for text consoles

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com There were some preexisting bits that released the input when switching to text console. This patch spreads this logic consistently and also avoids grabbing the input while a text console is active. Signed-off-by: Jan Kiszka jan.kis...@siemens.com ---

[Qemu-devel] [PATCH 02/15] sdl: Do not make full screen mode resizable

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com This prevents continuous resizing events and improper screen setups when going full screen. CC: Stefano Stabellini stefano.stabell...@eu.citrix.com Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c |7 +-- 1 files changed, 5

[Qemu-devel] [PATCH 07/15] sdl: Drop bogus gui_fullscreen_initial_grab

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com There must be no difference between initial -full-screen and switching to this mode via the hot key. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/ui/sdl.c

[Qemu-devel] [PATCH 04/15] sdl: Properly mark modifier+u as hotkey

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/ui/sdl.c b/ui/sdl.c index 1563ee1..e6c9597 100644 --- a/ui/sdl.c +++ b/ui/sdl.c @@ -589,6 +589,7 @@ static void

[Qemu-devel] [PATCH 13/15] sdl: Add zoom hot keys

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Allow to enlarge or shrink the screen via CTRL-ALT-+/-. In contrast to scaling the window, these controls always preserve the aspect ratio of the current console. CC: Stefano Stabellini stefano.stabell...@eu.citrix.com Signed-off-by: Jan Kiszka

[Qemu-devel] [PATCH 06/15] sdl: Restore scaling mode on return from full screen

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Save the scaling mode and its geometry when going full screen, restore it when returning to windowed mode. CC: Stefano Stabellini stefano.stabell...@eu.citrix.com Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c | 48

[Qemu-devel] [PATCH 05/15] sdl: Fix full screen toggling from scaled mode

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com When switching to full screen mode from a scaled window, we need to resize to DisplayState's dimension, not the scaled real screen size. Moreover, scaling mode may have manipulated the bpp. So we need to restore it from the DisplayState as well. CC:

[Qemu-devel] [PATCH 11/15] sdl: Fix cursor handling when switching consoles in absolute mouse mode

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Restore the cursor when switching from graphic to text console while the mouse is in absolute mode. Disable it again when returning. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c | 13 ++--- 1 files changed, 10 insertions(+), 3

[Qemu-devel] [PATCH 15/15] sdl: Refactor sdl_send_mouse_event

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com Replace width/height globals with the identical values from real_screen, refactor the function according to our coding style. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c | 22 +++--- 1 files changed, 11 insertions(+),

[Qemu-devel] [PATCH 08/15] sdl: Initialize gui_fullscreen earlier during setup

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com This ensures that we actually enter full screen on startup when e.g. '-vga none -full-screen' was specified. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git

[Qemu-devel] [PATCH 14/15] sdl: Factor out event handlers from sdl_refresh

2011-07-30 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com No functional changes. Signed-off-by: Jan Kiszka jan.kis...@siemens.com --- ui/sdl.c | 476 +++--- 1 files changed, 271 insertions(+), 205 deletions(-) diff --git a/ui/sdl.c b/ui/sdl.c index

Re: [Qemu-devel] [PATCH v3 0/6] Implement constant folding and copy propagation in TCG

2011-07-30 Thread Blue Swirl
Thanks, applied all. On Thu, Jul 7, 2011 at 3:37 PM, Kirill Batuzov batuz...@ispras.ru wrote: This series implements some basic machine-independent optimizations.  They simplify code and allow liveness analysis do it's work better. Suppose we have following ARM code:  movw    r12, #0xb6db  

Re: [Qemu-devel] [PATCH 5/7] target-alpha: Implement WAIT IPR.

2011-07-30 Thread Blue Swirl
On Sat, Jul 23, 2011 at 10:17 PM, Richard Henderson r...@twiddle.net wrote: --- Misses SoB and I don't know how to add it while pulling. Please fix or educate.  target-alpha/translate.c |   31 +--  1 files changed, 21 insertions(+), 10 deletions(-) diff --git

[Qemu-devel] [PATCH][STABLE] user: Restore debug usage message for '-d ?' in user mode emulation

2011-07-30 Thread Peter Maydell
The code which prints the debug usage message on '-d ?' for *-user has to come before the check for not enough arguments, so that qemu-foo -d ? prints the list of possible debug log items rather than the generic usage message. (This was inadvertently broken in commit c235d73.) Signed-off-by:

Re: [Qemu-devel] [PATCH v3 5/6] Do constant folding for shift operations.

2011-07-30 Thread Blue Swirl
On Thu, Jul 7, 2011 at 3:37 PM, Kirill Batuzov batuz...@ispras.ru wrote: Perform constant forlding for SHR, SHL, SAR, ROTR, ROTL operations. This patch broke build on targets (Sparc, MIPS) which don't implement rotation ops, the next patch likewise. I committed a fix. Signed-off-by: Kirill

[Qemu-devel] Bug#636035: qemu-user: init_paths() doesnt guard against recursive link cycles

2011-07-30 Thread Johannes Schauer
Package: qemu-user Version: 0.14.1+dfsg-3 Severity: normal Hi, when a symbolic or hardlink which creates a recursive cycle exists in the directory specified as the elf interpreter prefix (default=/etc/qemu-binfmt/arch/), qemu-user will recursively traverse this path and never finish (eating tons

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Artyom Tarasenko
On Sat, Jul 30, 2011 at 11:09 AM, Blue Swirl blauwir...@gmail.com wrote: On Mon, Jul 25, 2011 at 8:22 PM, Artyom Tarasenko atar4q...@gmail.com wrote: clear interrupt request if the interrupt priority CPU pil clear hardware interrupt request if interrupts are disabled Signed-off-by: Artyom

Re: [Qemu-devel] [PATCH 02/15] hw/omap_gpio.c: Don't complain about some writes to r/o registers

2011-07-30 Thread Peter Maydell
On 30 July 2011 05:53, andrzej zaborowski balr...@gmail.com wrote: I went ahead and pushed the series Thanks. with the exception of this patch and 14/15 because I think these are the types of patches that should remain in downstream as a reminder, is there an argument for not fixing these

Re: [Qemu-devel] [PATCH 01/15] sdl: Fix termination in -no-shutdown mode

2011-07-30 Thread Anthony Liguori
On 07/30/2011 04:39 AM, Jan Kiszka wrote: From: Jan Kiszkajan.kis...@siemens.com Just like the monitor does, we need to clear no_shutdown before calling qemu_system_shutdown_request on quit requests. Otherwise, QEMU just stops the VM. Signed-off-by: Jan Kiszkajan.kis...@siemens.com

[Qemu-devel] qemu-kvm idle guest using 10% cpu and causes significant increase of read_hpet calls on host

2011-07-30 Thread Dennis Jacobfeuerborn
Hi, I've started running a Centos6 minimal install virtual machine on a Centost6 host and noticed that even when the guest is completely idle the qemu-kvm process on the host shows up with 10% cpu usage on in top. Using perf and oprofile I noticed that once the guest is running the amount of

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Blue Swirl
On Sat, Jul 30, 2011 at 3:31 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 11:09 AM, Blue Swirl blauwir...@gmail.com wrote: On Mon, Jul 25, 2011 at 8:22 PM, Artyom Tarasenko atar4q...@gmail.com wrote: clear interrupt request if the interrupt priority CPU pil clear

Re: [Qemu-devel] Bug#632192: [PATCH] add QEMU_LD_PREFIX environment variable

2011-07-30 Thread Riku Voipio
On Fri, Jul 29, 2011 at 05:21:59PM +0200, Johannes Schauer wrote: So if we agree on using environment variables to pass options to qemu-user we next need to agree on how to name the options. The following commandline arguments exist (in order as they are checked in linux-user/main.c) and I

[Qemu-devel] Is there any qemu imag

2011-07-30 Thread bala suru
Hi, Is there any qemu image (small OS which support , gcc, ssh, and networking ) , like linux-0.2.img.bz2 . I want this for KVM hyeprvisor ..

Re: [Qemu-devel] [PATCH] v6 revamp acpitable parsing and allow to specify complete (headerful) table

2011-07-30 Thread John Baboval
Thanks. Somehow completely missed Blue's response back on the 15th. Glad to see this in. When using this for SLIC I had to patch the OEM ID fields in the other tables to match at runtime in order to make windows licensing happy. But thats a BIOS change, not something in QEMU On Jul 30,

Re: [Qemu-devel] kvm PCI assignment VFIO ramblings

2011-07-30 Thread Alex Williamson
On Sat, 2011-07-30 at 09:58 +1000, Benjamin Herrenschmidt wrote: Hi folks ! So I promised Anthony I would try to summarize some of the comments issues we have vs. VFIO after we've tried to use it for PCI pass-through on POWER. It's pretty long, there are various items with more or less

Re: [Qemu-devel] [PATCH v3 5/6] Do constant folding for shift operations.

2011-07-30 Thread Blue Swirl
On Sat, Jul 30, 2011 at 3:25 PM, Blue Swirl blauwir...@gmail.com wrote: On Thu, Jul 7, 2011 at 3:37 PM, Kirill Batuzov batuz...@ispras.ru wrote: Perform constant forlding for SHR, SHL, SAR, ROTR, ROTL operations. This patch broke build on targets (Sparc, MIPS) which don't implement rotation

[Qemu-devel] [PATCH] TCG: improve optimizer debugging

2011-07-30 Thread Blue Swirl
Use enum TCGOpcode instead of plain old int so that the name of current op can be seen in GDB. Add a default case to switch so that GCC does not complain about unhandled enum cases. Signed-off-by: Blue Swirl blauwir...@gmail.com --- tcg/optimize.c | 15 +-- 1 files changed, 9

[Qemu-devel] [PATCH] dyngen-exec.h: cleanup

2011-07-30 Thread Blue Swirl
Remove unused or otherwise available stuff. Signed-off-by: Blue Swirl blauwir...@gmail.com --- dyngen-exec.h | 14 -- 1 files changed, 0 insertions(+), 14 deletions(-) diff --git a/dyngen-exec.h b/dyngen-exec.h index cc1e4fb..8beb7f3 100644 --- a/dyngen-exec.h +++ b/dyngen-exec.h

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Artyom Tarasenko
On Sat, Jul 30, 2011 at 3:25 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 30, 2011 at 3:31 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 11:09 AM, Blue Swirl blauwir...@gmail.com wrote: On Mon, Jul 25, 2011 at 8:22 PM, Artyom Tarasenko atar4q...@gmail.com

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Blue Swirl
On Sat, Jul 30, 2011 at 11:19 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 3:25 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 30, 2011 at 3:31 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 11:09 AM, Blue Swirl blauwir...@gmail.com

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Artyom Tarasenko
On Sat, Jul 30, 2011 at 10:32 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 30, 2011 at 11:19 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 3:25 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 30, 2011 at 3:31 PM, Artyom Tarasenko atar4q...@gmail.com

[Qemu-devel] [Bug 818645] [NEW] Unhandled OF service in FreeBSD loader - unimplemented service milliseconds

2011-07-30 Thread Wojciech Koszek
Public bug reported: wkoszek@wkoszek:~/bin/qemu/qemu$ git log | head -1 commit c886edfb851c0c590d4e77f058f2ec8ed95ad1b5 built with default settings. Run like that: /home/wkoszek/bin/qemu-dynamic/bin/qemu-system-sparc64 -m 1024 -cdrom ~/Pulpit/iso/FreeBSD-7.4-RELEASE-sparc64-bootonly.iso -hda

Re: [Qemu-devel] [PATCH] fix disabling interrupts in sun4u

2011-07-30 Thread Blue Swirl
On Sat, Jul 30, 2011 at 8:58 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 10:32 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 30, 2011 at 11:19 PM, Artyom Tarasenko atar4q...@gmail.com wrote: On Sat, Jul 30, 2011 at 3:25 PM, Blue Swirl blauwir...@gmail.com

[Qemu-devel] [Bug 818647] [NEW] Getting segmentation fault when trying to boot FreeBSD

2011-07-30 Thread Wojciech Koszek
Public bug reported: wkoszek@wkoszek:~/bin/qemu/qemu$ git log | head -1 commit c886edfb851c0c590d4e77f058f2ec8ed95ad1b5 wkoszek@wkoszek:~/o/freebsd/sys/boot/i386$ qemu-system-sparc64 --version QEMU emulator version 0.15.50, Copyright (c) 2003-2008 Fabrice Bellard

[Qemu-devel] [Bug 818673] [NEW] virtio: trying to map MMIO memory

2011-07-30 Thread Rick Vernam
Public bug reported: Qemu host is Core i7, running Linux. Guest is Windows XP sp3. Often, qemu will crash shortly after starting (1-5 minutes) with a statement qemu-system-x86_64: virtio: trying to map MMIO memory This has occured with qemu-kvm 0.14, qemu-kvm 0.14.1, qemu-0.15.0-rc0 and qemu

Re: [Qemu-devel] [PATCH] Fix forcing multicast msgs to loopback on OpenBSD.

2011-07-30 Thread Brad
On Fri, Jul 29, 2011 at 07:15:11PM -0400, Brad wrote: Fix forcing multicast msgs to loopback on OpenBSD. e.g. $ sudo qemu -m 128 -no-fd-bootchk \ -hda virtual.img -boot n -nographic \ -net nic,vlan=0,model=rtl8139,macaddr=52:54:00:12:34:03 \ -net user -tftp

Re: [Qemu-devel] kvm PCI assignment VFIO ramblings

2011-07-30 Thread Benjamin Herrenschmidt
On Sat, 2011-07-30 at 12:20 -0600, Alex Williamson wrote: On x86, the USB controllers don't typically live behind a PCIe-to-PCI bridge, so don't suffer the source identifier problem, but they do often share an interrupt. But even then, we can count on most modern devices supporting PCI2.3,

Re: [Qemu-devel] kvm PCI assignment VFIO ramblings

2011-07-30 Thread Benjamin Herrenschmidt
On Sat, 2011-07-30 at 12:20 -0600, Alex Williamson wrote: On x86, the USB controllers don't typically live behind a PCIe-to-PCI bridge, so don't suffer the source identifier problem, but they do often share an interrupt. But even then, we can count on most modern devices supporting PCI2.3,

[Qemu-devel] buildbot failure in qemu on block_x86_64_debian_5_0

2011-07-30 Thread qemu
The Buildbot has detected a new failure on builder block_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/block_x86_64_debian_5_0/builds/50 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: yuzuki

[Qemu-devel] buildbot failure in qemu on block_i386_debian_5_0

2011-07-30 Thread qemu
The Buildbot has detected a new failure on builder block_i386_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/block_i386_debian_5_0/builds/50 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: yuzuki Build

[Qemu-devel] buildbot failure in qemu on qmp_i386_debian_5_0

2011-07-30 Thread qemu
The Buildbot has detected a new failure on builder qmp_i386_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/qmp_i386_debian_5_0/builds/50 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: yuzuki Build

[Qemu-devel] buildbot failure in qemu on qmp_x86_64_debian_5_0

2011-07-30 Thread qemu
The Buildbot has detected a new failure on builder qmp_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/qmp_x86_64_debian_5_0/builds/50 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: yuzuki Build

[Qemu-devel] buildbot failure in qemu on xen_x86_64_debian_5_0

2011-07-30 Thread qemu
The Buildbot has detected a new failure on builder xen_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/xen_x86_64_debian_5_0/builds/50 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: yuzuki Build