[Qemu-devel] Re: Embedded World 2011

2011-02-20 Thread Jan Kiszka
On 2011-02-19 19:45, Andreas Färber wrote: Hello everyone, Following up on the QEMU SPICE meeting at FOSDEM, is anyone attending Embedded World (*) 1-3 March in Nuremberg? If you're interested in meeting either on the exhibit floor or for a social evening, please indicate which day(s)

[Qemu-devel] Re: [STABLE][PATCH] isa-bus: Remove bogus IRQ sharing check

2011-02-20 Thread Jan Kiszka
On 2011-02-20 00:25, Aurelien Jarno wrote: On Sat, Feb 19, 2011 at 06:56:22PM +0100, Jan Kiszka wrote: From: Jan Kiszka jan.kis...@siemens.com Nothing prevented IRQ sharing on the ISA bus in principle. Not all boards supported this, neither each and every card nor driver and OS. Still, there

Re: [Qemu-devel] [STABLE][PATCH] isa-bus: Remove bogus IRQ sharing check

2011-02-20 Thread Jan Kiszka
On 2011-02-19 23:45, Michael Tokarev wrote: 19.02.2011 20:56, Jan Kiszka wrote: From: Jan Kiszka jan.kis...@siemens.com Nothing prevented IRQ sharing on the ISA bus in principle. Not all boards supported this, neither each and every card nor driver and OS. Still, there existed valid IRQ

[Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Jan Kiszka
On 2011-02-19 20:32, Gerhard Wiesinger wrote: Hello, I like the way like VMWare Server 2.x does bridging: There is no need to change basic network interface settings and add a bridge between the existing network interface like e.g. discussed in:

Re: [Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Gerhard Wiesinger
On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-19 20:32, Gerhard Wiesinger wrote: Any other suggestions to achieve this? http://virt.kernelnewbies.org/MacVTap Enabling host-guest communication this way is still a bit unhandy IMHO. You need a fairly recent iproute2 version, then set up

Re: [Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Jan Kiszka
On 2011-02-20 11:19, Gerhard Wiesinger wrote: On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-19 20:32, Gerhard Wiesinger wrote: Any other suggestions to achieve this? http://virt.kernelnewbies.org/MacVTap Enabling host-guest communication this way is still a bit unhandy IMHO. You need

Re: [Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Gerhard Wiesinger
On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-19 20:32, Gerhard Wiesinger wrote: Hello, http://virt.kernelnewbies.org/MacVTap ip link add link eth1 name macvtap0 type macvtap mode bridge ip link add link eth1 name macvlan0 type macvlan mode bridge ifconfig macvlan0 ... Hello

[Qemu-devel] Re: GSOC 2011

2011-02-20 Thread Aurelien Jarno
On Wed, Feb 16, 2011 at 07:32:31PM -0500, yajin wrote: Hi all, Hi, I have proposed an idea of GSOC 2011 about adding KVM support to MIPS architecture. I have solid experience on MIPS architecture and familiar with qemu. I am very interested in this project. Having KVM support for MIPS would

[Qemu-devel] [PATCH 0/10] pxa2xx: work on switching to qdev/vmstate

2011-02-20 Thread Dmitry Eremin-Solenikov
This series introduces another partial rework of pxa2xx to use qdev/vmstate to handle subdevices. Dmitry Eremin-Solenikov (10): arm-pic: add one extra interrupt to support EXITTB interrupts pxa2xx_pic: update to use qdev and arm-pic pxa2xx_gpio: simplify by reusing wake irq from

Re: [Qemu-devel] [PULL] linux-user patches for master

2011-02-20 Thread Aurelien Jarno
On Thu, Feb 17, 2011 at 01:57:31PM +0200, Riku Voipio wrote: The following changes since commit 79f2b6fcdb7c06cdce6eccc796f5651f3efb843e: Merge remote branch 'kwolf/for-anthony' into staging (2011-02-16 08:47:13 -0600) are available in the git repository at:

[Qemu-devel] [PATCH 02/10] pxa2xx_pic: update to use qdev and arm-pic

2011-02-20 Thread Dmitry Eremin-Solenikov
Use qdev/sysbus framework to handle pxa2xx-pic. Instead of exposing IRQs via array, reference them via qdev_get_gpio_in(). Also pxa2xx_pic duplicated some code from arm-pic. Drop it, replacing with references to arm-pic, as all other ARM SoCs do for their PIC code. Signed-off-by: Dmitry

[Qemu-devel] [PATCH 01/10] arm-pic: add one extra interrupt to support EXITTB interrupts

2011-02-20 Thread Dmitry Eremin-Solenikov
Some ARM processors (consider PXA2xx, Omap1, etc.) want to be able to send CPU_INTERRUPT_EXITTB to the cpu. Support doing that through common arm_pic. Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/arm-misc.h |1 + hw/arm_pic.c |6 +- 2 files changed, 6

[Qemu-devel] [PATCH 04/10] vmstate: add VMSTATE_STRUCT_ARRAY_TEST

2011-02-20 Thread Dmitry Eremin-Solenikov
This is a _TEST variant of VMSTATE_STRUCT_ARRAY, necessary e.g. for future patch changing pxa2xx_timer to use vmstate. Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/hw.h |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/hw/hw.h b/hw/hw.h index

[Qemu-devel] [PATCH 06/10] pxa2xx_timer: switch to using qdev/vmstate

2011-02-20 Thread Dmitry Eremin-Solenikov
Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/pxa.h |4 - hw/pxa2xx.c | 15 +++- hw/pxa2xx_timer.c | 248 ++--- 3 files changed, 155 insertions(+), 112 deletions(-) diff --git a/hw/pxa.h b/hw/pxa.h index

[Qemu-devel] [PATCH 03/10] pxa2xx_gpio: simplify by reusing wake irq from arm_pic

2011-02-20 Thread Dmitry Eremin-Solenikov
We can stop messing with CPUState directly, as we have special irq in arm_pic Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/pxa.h |2 +- hw/pxa2xx.c |6 -- hw/pxa2xx_gpio.c | 14 +- 3 files changed, 10 insertions(+), 12 deletions(-)

[Qemu-devel] [PATCH 08/10] pxa2xx_dma: drop unused pxa2xx_dma_handler_t/handler field

2011-02-20 Thread Dmitry Eremin-Solenikov
Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/pxa2xx_dma.c |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/hw/pxa2xx_dma.c b/hw/pxa2xx_dma.c index b512d34..92c3e1e 100644 --- a/hw/pxa2xx_dma.c +++ b/hw/pxa2xx_dma.c @@ -20,11 +20,7 @@ typedef

[Qemu-devel] [PATCH 07/10] vmstate: move VMSTATE_PCIE_AER_ERRS to hw/hw.h

2011-02-20 Thread Dmitry Eremin-Solenikov
VMSTATE_PCIE_AER_ERRS is indeed useful for other emulation drivers. Move it to hw/hw.h under the name of VMSTATE_STRUCT_VARRAY_POINTER_UINT16. Also add VMSTATE_STRUCT_VARRAY_POINTER_INT32 which is more or less the same as _UINT16 macro, except the fact it uses int32_t internally. Signed-off-by:

[Qemu-devel] [PATCH 05/10] pxa2xx_timer: change info struct name to comply with guidelines

2011-02-20 Thread Dmitry Eremin-Solenikov
It should be PXA2xxTimerInfo, not pxa2xx_timer_info. Replace all occurencies of old name with the new one. Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/pxa2xx_timer.c | 28 ++-- 1 files changed, 14 insertions(+), 14 deletions(-) diff --git

[Qemu-devel] [PATCH 09/10] pxa2xx_dma: port to qdev/vmstate

2011-02-20 Thread Dmitry Eremin-Solenikov
Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/pxa.h | 14 ++-- hw/pxa2xx.c | 43 - hw/pxa2xx_dma.c | 184 +++--- hw/pxa2xx_mmci.c | 16 +++-- 4 files changed, 150 insertions(+), 107 deletions(-)

[Qemu-devel] qemu-0.14.0 doesn't compile on ppc32

2011-02-20 Thread nello martuscielli
hi, i'm unable to compile qemu-0.14.0 on my PowerPC box. The same kind of error there is also compiling qemu-0.13.0 in the same environment. Testing box is a PowerMac G4 with CRUX PPC (32bit) 2.7 gcc-4.5.2, binutils-2.21, glibc-2.12.2, linux-2.6.37.1 I always get the same compile failure. # crux

[Qemu-devel] [PATCH 10/10] pxa2xx: port pxa2xx_rtc to using qdev/vmstate

2011-02-20 Thread Dmitry Eremin-Solenikov
Signed-off-by: Dmitry Eremin-Solenikov dbarysh...@gmail.com --- hw/pxa.h| 27 - hw/pxa2xx.c | 173 ++- 2 files changed, 100 insertions(+), 100 deletions(-) diff --git a/hw/pxa.h b/hw/pxa.h index bad0556..6e2509a 100644 ---

[Qemu-devel] Re: GSOC 2011 (KVM for MIPS)

2011-02-20 Thread Jan Kiszka
On 2011-02-20 14:08, Aurelien Jarno wrote: On Wed, Feb 16, 2011 at 07:32:31PM -0500, yajin wrote: Hi all, Hi, I have proposed an idea of GSOC 2011 about adding KVM support to MIPS architecture. I have solid experience on MIPS architecture and familiar with qemu. I am very interested in

Re: [Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Jan Kiszka
On 2011-02-20 13:49, Gerhard Wiesinger wrote: On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-19 20:32, Gerhard Wiesinger wrote: Hello, http://virt.kernelnewbies.org/MacVTap ip link add link eth1 name macvtap0 type macvtap mode bridge ip link add link eth1 name macvlan0 type

[Qemu-devel] Re: [PATCH] Fix obvious mistake in pxa2xx i2s driver

2011-02-20 Thread Vasily Khoruzhick
On Monday 14 February 2011 18:59:10 Vasily Khoruzhick wrote: RST bit is (1 3) bit, not (1 2), fix condition that enables i2s if ENB is set and RST is not set. Ping

[Qemu-devel] Re: [PATCH 1/2] pxa2xx_keypad: enhance emulation of KPAS, KPASMKP regs

2011-02-20 Thread Vasily Khoruzhick
On Tuesday 15 February 2011 15:27:28 Vasily Khoruzhick wrote: Add emulation of KPAS register and proper emulation of KPASMKP regs, so now driver supports multipresses and properly works with Linux driver. Ping

Re: [Qemu-devel] [PATCH] qemu-lock.h: Remove non-pthreads spinlock implementations

2011-02-20 Thread Aurelien Jarno
On Mon, Jan 31, 2011 at 06:26:40PM +, Peter Maydell wrote: Since configure guarantees us that we have pthreads on all hosts except mingw (which doesn't support a USER_ONLY config), we can and should use the pthread_mutex based implementation of spin_lock() and spin_unlock() in all

Re: [Qemu-devel] [PATCHv2 0/3] e1000: multi-buffer packet support

2011-02-20 Thread Aurelien Jarno
On Tue, Feb 15, 2011 at 06:27:44PM +0200, Michael S. Tsirkin wrote: e1000 supports multi-buffer packets larger than rxbuf_size. This fixes the following (on linux): - in guest: ifconfig eth1 mtu 16110 - in host: ifconfig tap0 mtu 16110 ping -s 16082 guest-ip Red Hat bugzilla:

Re: [Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Gerhard Wiesinger
On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-20 13:49, Gerhard Wiesinger wrote: On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-19 20:32, Gerhard Wiesinger wrote: Hello, http://virt.kernelnewbies.org/MacVTap ip link add link eth1 name macvtap0 type macvtap mode bridge ip link

Re: [Qemu-devel] [PATCH 0/7] usb-ccid (v19)

2011-02-20 Thread Alon Levy
On Mon, Feb 07, 2011 at 06:34:56PM +0200, Alon Levy wrote: This patchset adds three new devices, usb-ccid, ccid-card-passthru and ccid-card-emulated, providing a CCID bus, a simple passthru protocol implementing card requiring a client, and a standalone emulated card. It also introduces a

Re: [Qemu-devel] [PATCH] target-arm: Implement VMULL.P8

2011-02-20 Thread Aurelien Jarno
On Thu, Feb 10, 2011 at 07:07:55PM +, Peter Maydell wrote: Implement VMULL.P8 (the 32x32-64 version of the polynomial multiply instruction). Signed-off-by: Peter Maydell peter.mayd...@linaro.org --- target-arm/helpers.h |1 + target-arm/neon_helper.c | 30

Re: [Qemu-devel] [PATCH 0/2] target-arm: Fix VQDMLSL

2011-02-20 Thread Aurelien Jarno
On Fri, Feb 11, 2011 at 12:26:46PM +, Peter Maydell wrote: This patch series fixes the Neon VQDMLSL instruction, which was incorrectly doing the negation step before saturation rather than afterwards. Patch 1 is a minor cleanup to the affected code area before patch 2 which is the fix

Re: [Qemu-devel] [PATCH] target-arm: Correct conversion of Thumb Neon dp encodings into ARM

2011-02-20 Thread Aurelien Jarno
On Fri, Feb 11, 2011 at 01:35:25PM +, Peter Maydell wrote: From: Juha Riihimäki juha.riihim...@nokia.com We handle Thumb Neon data processing instructions by converting them into the equivalent ARM encoding, as the two are very close. However the ARM encoding should have bit 28 set, not

Re: [Qemu-devel] [PATCH v2 0/2] target-arm: fix Neon VUZP, VZIP instructions

2011-02-20 Thread Aurelien Jarno
On Mon, Feb 14, 2011 at 10:22:47AM +, Peter Maydell wrote: This patch series fixes bugs in the Neon VZIP and VUZP instructions by abandoning the existing inline implementations in favour of calling out to straightforward helper functions. The inline routines could generate 50+ TCG ops

Re: [Qemu-devel] [PATCH 10/10] target-arm: Fix shift by immediate and narrow where src, dest overlap

2011-02-20 Thread Aurelien Jarno
On Tue, Feb 15, 2011 at 01:44:50PM +, Peter Maydell wrote: For Neon shifts by immediate and narrow, correctly handle the case where the source registers and the destination registers overlap (the second pass should use the original register contents, not the results of the first pass).

Re: [Qemu-devel] [PATCH 00/10] Fix Neon shift instructions

2011-02-20 Thread Aurelien Jarno
On Tue, Feb 15, 2011 at 01:44:40PM +, Peter Maydell wrote: This patch series fixes bugs in the Neon shift instructions VRSHR, VRSRA, VQRSHRN, VQRSHRUN, VRSHRN, VQSHRN, VSHRN, VQSHRUN, VRSHL, and VQRSHL. It is based on the v3 patchset Christophe sent recently, with some fixes for minor nits

Re: [Qemu-devel] qemu-0.14.0 doesn't compile on ppc32

2011-02-20 Thread Aurelien Jarno
On Sun, Feb 20, 2011 at 03:01:12PM +0100, nello martuscielli wrote: hi, i'm unable to compile qemu-0.14.0 on my PowerPC box. The same kind of error there is also compiling qemu-0.13.0 in the same environment. Testing box is a PowerMac G4 with CRUX PPC (32bit) 2.7 gcc-4.5.2, binutils-2.21,

Re: [Qemu-devel] qemu-0.14.0 doesn't compile on ppc32

2011-02-20 Thread malc
On Sun, 20 Feb 2011, nello martuscielli wrote: hi, i'm unable to compile qemu-0.14.0 on my PowerPC box. The same kind of error there is also compiling qemu-0.13.0 in the same environment. Testing box is a PowerMac G4 with CRUX PPC (32bit) 2.7 gcc-4.5.2, binutils-2.21, glibc-2.12.2,

Re: [Qemu-devel] [PATCHv3 0/2] vhost: fix tap link down

2011-02-20 Thread Aurelien Jarno
On Wed, Feb 09, 2011 at 06:44:59PM +0200, Michael S. Tsirkin wrote: qemu makes it possible to disable link at tap which is not communicated to the guest but causes all packets to be dropped. With vhost-net at the moment it just keeps going. Fix by communicating to virtio net and have that

Re: [Qemu-devel] [PATCH] w32: Fix arguments for GetProcessAffinityMask, SetProcessAffinityMask

2011-02-20 Thread Aurelien Jarno
On Sat, Feb 05, 2011 at 08:59:49PM +0100, Stefan Weil wrote: These functions take arguments of type PDWORD_PTR which is a pointer to a DWORD_PTR, not a pointer to a DWORD. Cc: Anthony Liguori aligu...@us.ibm.com Signed-off-by: Stefan Weil w...@mail.berlios.de --- os-win32.c |2 +- 1

Re: [Qemu-devel] qemu-0.14.0 doesn't compile on ppc32

2011-02-20 Thread malc
On Sun, 20 Feb 2011, Aurelien Jarno wrote: On Sun, Feb 20, 2011 at 03:01:12PM +0100, nello martuscielli wrote: hi, i'm unable to compile qemu-0.14.0 on my PowerPC box. The same kind of error there is also compiling qemu-0.13.0 in the same environment. Testing box is a PowerMac G4

[Qemu-devel] [Bug 617528] Re: Incorrect translation of unary PPC/SPE instructions (efdneg etc.)

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/617528 Title: Incorrect translation of unary PPC/SPE instructions (efdneg etc.)

[Qemu-devel] [Bug 600589] Re: xchg r8,rax treated as nop

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/600589 Title: xchg r8,rax treated as nop Status in QEMU: Fix Released Bug

[Qemu-devel] [Bug 606658] Re: system_powerdown broken

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/606658 Title: system_powerdown broken Status in QEMU: Fix Released Bug

[Qemu-devel] [Bug 611646] Re: isa bus not working

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/611646 Title: isa bus not working Status in QEMU: Fix Released Bug description:

[Qemu-devel] [Bug 597402] Re: qemu does not call unlink() on temp files in snapshot mode

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/597402 Title: qemu does not call unlink() on temp files in snapshot mode Status in

[Qemu-devel] [Bug 584153] Re: no useful error message when tap device open fails

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/584153 Title: no useful error message when tap device open fails Status in QEMU:

[Qemu-devel] [Bug 611640] Re: snapshot mode is broken for raw images

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/611640 Title: snapshot mode is broken for raw images Status in QEMU: Fix Released

[Qemu-devel] [Bug 600063] Re: target-arm/translate.c

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/600063 Title: target-arm/translate.c Status in QEMU: Fix Released Bug description:

[Qemu-devel] [Bug 604872] Re: qemu-system-arm segfaults emulating versatile machine after running debootstrap --second-stage inside vm

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/604872 Title: qemu-system-arm segfaults emulating versatile machine after running

[Qemu-devel] [Bug 581737] Re: Can't read e1000 NIC EEPROM on NetBSD guest

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/581737 Title: Can't read e1000 NIC EEPROM on NetBSD guest Status in QEMU: Fix

[Qemu-devel] [Bug 604166] Re: QEMU Floating Point Exception and Crash while Emulating Cirrus Logic 5446 PCI in Win98

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/604166 Title: QEMU Floating Point Exception and Crash while Emulating Cirrus Logic

[Qemu-devel] [Bug 584139] Re: keymapping error for usb keyboard (windows/menu keys)

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/584139 Title: keymapping error for usb keyboard (windows/menu keys) Status in QEMU:

[Qemu-devel] [Bug 544527] Re: usbfs is bugged with 2.6.32.9 and =2.6.33 (breaks VMWare, Qemu, sane scanners, ...)

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Invalid -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/544527 Title: usbfs is bugged with 2.6.32.9 and =2.6.33 (breaks VMWare, Qemu, sane

[Qemu-devel] [Bug 583462] Re: qemu disables screensaver

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/583462 Title: qemu disables screensaver Status in QEMU: Fix Released Bug

[Qemu-devel] [Bug 578346] Re: ATA IDENTIFY DEVICE word 64 doesn't describe available PIO modes

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/578346 Title: ATA IDENTIFY DEVICE word 64 doesn't describe available PIO modes Status

[Qemu-devel] [Bug 494486] Re: cirrus_vga display is buggy after migration

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/494486 Title: cirrus_vga display is buggy after migration Status in QEMU: Fix

[Qemu-devel] [Bug 584143] Re: qemu fails to set hdd serial number

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/584143 Title: qemu fails to set hdd serial number Status in QEMU: Fix Released

[Qemu-devel] [Bug 181951] Re: Single-stepping PPC targets chokes on branch instructions

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/181951 Title: Single-stepping PPC targets chokes on branch instructions Status in

[Qemu-devel] [Bug 477946] Re: XP guest install fails with NTFS format error

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/477946 Title: XP guest install fails with NTFS format error Status in QEMU: Fix

[Qemu-devel] [Bug 706766] Re: [Qemu-kvm] qemu-img fail to create qcow image

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/706766 Title: [Qemu-kvm] qemu-img fail to create qcow image Status in QEMU: Fix

[Qemu-devel] [Bug 629298] Re: incorrect output of ARM instruction SMMLS

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/629298 Title: incorrect output of ARM instruction SMMLS Status in QEMU: Fix

[Qemu-devel] [Bug 392032] Re: qemu-system-x86_64 fails to install debian-501-amd64-CD-1

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/392032 Title: qemu-system-x86_64 fails to install debian-501-amd64-CD-1 Status in

Re: [Qemu-devel] [PATCH 1/3] pci: Fix memory leak

2011-02-20 Thread Aurelien Jarno
On Sat, Jan 22, 2011 at 01:02:44PM +0100, Stefan Weil wrote: Signed-off-by: Stefan Weil w...@mail.berlios.de --- hw/pci.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Thanks all three patches applied. diff --git a/hw/pci.c b/hw/pci.c index 63f476a..38a60ae 100644 ---

[Qemu-devel] [Bug 702885] Re: Internal resource leak error with ARM NEON vmull.s32 insn

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/702885 Title: Internal resource leak error with ARM NEON vmull.s32 insn Status in

[Qemu-devel] [Bug 237635] Re: qemu mouse and keyboard grab is an accessibility problem

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/237635 Title: qemu mouse and keyboard grab is an accessibility problem Status in

[Qemu-devel] [Bug 673613] Re: ARM semihosting SYS_GET_CMDLINE does not return arguments

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/673613 Title: ARM semihosting SYS_GET_CMDLINE does not return arguments Status in

[Qemu-devel] [Bug 670883] Re: ARM : ldrexd and strexd implementation flawed

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/670883 Title: ARM : ldrexd and strexd implementation flawed Status in QEMU: Fix

[Qemu-devel] [Bug 585113] Re: e1000 irq problems after live migration with qemu-kvm 0.12.4

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/585113 Title: e1000 irq problems after live migration with qemu-kvm 0.12.4 Status in

[Qemu-devel] [Bug 592056] Re: qemu segmentation fault when create qcow2 image with qemu-img command

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/592056 Title: qemu segmentation fault when create qcow2 image with qemu-img command

[Qemu-devel] [Bug 700774] Re: sh7750.c:672: sh7750_mmct_writel: Assertion `0' failed.

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/700774 Title: sh7750.c:672: sh7750_mmct_writel: Assertion `0' failed. Status in QEMU:

[Qemu-devel] [Bug 643496] Re: qemu crashes with -nodefaults

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/643496 Title: qemu crashes with -nodefaults Status in QEMU: Fix Released Bug

[Qemu-devel] [Bug 586221] Re: Linux on ARM/Mainstone machine fails at bootstrap

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/586221 Title: Linux on ARM/Mainstone machine fails at bootstrap Status in QEMU: Fix

[Qemu-devel] [Bug 595438] Re: KVM segmentation fault, using SCSI+writeback and linux 2.4 guest

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/595438 Title: KVM segmentation fault, using SCSI+writeback and linux 2.4 guest Status

[Qemu-devel] [Bug 586424] Re: SMC91C111 failed when booting Linux/ARM(Mainstone) since 0.10.0

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/586424 Title: SMC91C111 failed when booting Linux/ARM(Mainstone) since 0.10.0 Status

Re: [Qemu-devel] [PATCH] Fix obvious mistake in pxa2xx i2s driver

2011-02-20 Thread Aurelien Jarno
On Sun, Feb 20, 2011 at 08:39:20PM +0200, Vasily Khoruzhick wrote: On Sunday 20 February 2011 20:24:46 Aurelien Jarno wrote: The fix looks fine, but the resulting code is probably over engineered... What about: s-enable = (value 9) == 1; ? Looks OK to me. Can you

Re: [Qemu-devel] [PATCH] scripts: add a guard macro in generated .h files

2011-02-20 Thread Aurelien Jarno
On Mon, Feb 07, 2011 at 04:21:40PM +0100, Tristan Gingold wrote: To avoid redefinition warnings. Signed-off-by: Tristan Gingold ging...@adacore.com --- rules.mak |2 +- scripts/create_config | 12 2 files changed, 13 insertions(+), 1 deletions(-) diff

[Qemu-devel] [Bug 586175] Re: Windows XP/2003 doesn't boot

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/586175 Title: Windows XP/2003 doesn't boot Status in QEMU: Fix Released Status in

Re: [Qemu-devel] [PATCH] qemu-char: Check for missing backend name

2011-02-20 Thread Aurelien Jarno
On Sat, Jan 22, 2011 at 01:07:26PM +, Stefan Hajnoczi wrote: Check if the backend option is missing before searching the backend table. This fixes a NULL pointer dereference when QEMU is invoked with the following invalid command-line: $ qemu -chardev id=foo,path=/tmp/socket

Re: [Qemu-devel] [PATCH v3] PS/2 keyboard Scancode Set 3 support

2011-02-20 Thread Aurelien Jarno
On Mon, Feb 14, 2011 at 08:59:02PM +0800, Roy Tam wrote: The following patch adds PS/2 keyboard Scancode Set 3 support. Sign-off-by: Roy Tam roy...@gmail.com -- v3: change from switch to array, more style fixes v2: checkpatch.pl style fixes diff --git a/hw/ps2.c b/hw/ps2.c index

[Qemu-devel] [Bug 594944] Re: --enable-debug error

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/594944 Title: --enable-debug error Status in QEMU: Fix Released Bug description:

Re: [Qemu-devel] [PATCH] Fix obvious mistake in pxa2xx i2s driver

2011-02-20 Thread Aurelien Jarno
On Mon, Feb 14, 2011 at 06:59:10PM +0200, Vasily Khoruzhick wrote: RST bit is (1 3) bit, not (1 2), fix condition that enables i2s if ENB is set and RST is not set. Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- hw/pxa2xx.c |2 +- 1 files changed, 1 insertions(+), 1

[Qemu-devel] [Bug 538908] Re: qemu-system-cris crashes after a few seconds

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/538908 Title: qemu-system-cris crashes after a few seconds Status in QEMU: Fix

Re: [Qemu-devel] qemu-0.14.0 doesn't compile on ppc32

2011-02-20 Thread Peter Maydell
On 20 February 2011 16:56, Aurelien Jarno aurel...@aurel32.net wrote: On Sun, Feb 20, 2011 at 03:01:12PM +0100, nello martuscielli wrote:   CC    x86_64-softmmu/translate.o {standard input}: Assembler messages: {standard input}:11903788: Warning: end of file not at end of a line; newline

[Qemu-devel] [Bug 721825] Re: VDI block driver bugs

2011-02-20 Thread Stefan Weil
** Changed in: qemu Status: New = Confirmed ** Changed in: qemu Assignee: (unassigned) = Stefan Weil (ubuntu-weilnetz) -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/721825 Title: VDI

Re: [Qemu-devel] [PATCH] Fix obvious mistake in pxa2xx i2s driver

2011-02-20 Thread Vasily Khoruzhick
On Sunday 20 February 2011 20:24:46 Aurelien Jarno wrote: The fix looks fine, but the resulting code is probably over engineered... What about: s-enable = (value 9) == 1; ? Looks OK to me. Regards Vasily

[Qemu-devel] [Bug 586420] Re: WinXP install cd hangs at boot time if machine started with floppy

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/586420 Title: WinXP install cd hangs at boot time if machine started with floppy

Re: [Qemu-devel] [PATCH 1/3] tests: Fix two memory leaks

2011-02-20 Thread Aurelien Jarno
On Fri, Jan 21, 2011 at 10:49:29PM +0100, Stefan Weil wrote: Although both leaks are not really important, fix them to avoid cppcheck warnings: tests/linux-test.c:433: error: Memory leak: stack1 tests/linux-test.c:433: error: Memory leak: stack2 Signed-off-by: Stefan Weil

Re: [Qemu-devel] [PATCH] qdev: Fix printout of bit device properties with bit index = 8

2011-02-20 Thread Aurelien Jarno
On Mon, Jan 10, 2011 at 11:11:40PM +0100, di...@google.com wrote: From: David 'Digit' Turner di...@google.com Signed-off-by: David 'Digit' Turner di...@google.com --- hw/qdev-properties.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/qdev-properties.c

[Qemu-devel] [Bug 550863] Re: MicroBlaze QEMU skips jumps when using single steps in GDB

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/550863 Title: MicroBlaze QEMU skips jumps when using single steps in GDB Status in

[Qemu-devel] [PATCH v2] Fix obvious mistake in pxa2xx i2s driver

2011-02-20 Thread Vasily Khoruzhick
RST bit is (1 4) bit, not (1 3), fix condition that enables i2s if ENB is set and RST is not set. Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- v2: simplify expression hw/pxa2xx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/pxa2xx.c b/hw/pxa2xx.c

[Qemu-devel] [Bug 450522] Re: Unable to set fullscreen anymore

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/450522 Title: Unable to set fullscreen anymore Status in QEMU: Fix Released Bug

[Qemu-devel] [Bug 581335] Re: ARM Thumb IT block incorrect execution after interrupt

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/581335 Title: ARM Thumb IT block incorrect execution after interrupt Status in QEMU:

[Qemu-devel] Re: [PATCH v2] Fix obvious mistake in pxa2xx i2s driver

2011-02-20 Thread Aurelien Jarno
On Sun, Feb 20, 2011 at 09:23:59PM +0200, Vasily Khoruzhick wrote: RST bit is (1 4) bit, not (1 3), fix condition that enables i2s if ENB is set and RST is not set. Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- v2: simplify expression hw/pxa2xx.c |2 +- 1 files changed,

[Qemu-devel] [Bug 563883] Re: typo, easy fix

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/563883 Title: typo, easy fix Status in QEMU: Fix Released Bug description: Spot

[Qemu-devel] [Bug 551814] Re: qemu-system-sparc: conditional branch never taken when its delay slot accesses io and icount is being used

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/551814 Title: qemu-system-sparc: conditional branch never taken when its delay slot

[Qemu-devel] [Bug 494500] Re: QEMU 0.12.0 does not support KVM with Kernel 2.6.29, bug in ./configure and kvm-all.c

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/494500 Title: QEMU 0.12.0 does not support KVM with Kernel 2.6.29, bug in

[Qemu-devel] [Bug 573827] Re: QEMU 0.12.3 crashes on incomplete USB serial device parameter

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/573827 Title: QEMU 0.12.3 crashes on incomplete USB serial device parameter Status in

Re: [Qemu-devel] [PATCH 1/2] pxa2xx_keypad: enhance emulation of KPAS, KPASMKP regs

2011-02-20 Thread Aurelien Jarno
On Tue, Feb 15, 2011 at 03:27:28PM +0200, Vasily Khoruzhick wrote: Add emulation of KPAS register and proper emulation of KPASMKP regs, so now driver supports multipresses and properly works with Linux driver. Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- hw/pxa2xx_keypad.c |

[Qemu-devel] [Bug 419590] Re: kvm core dump on hotplug (pci_add)

2011-02-20 Thread Aurelien Jarno
** Changed in: qemu Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/419590 Title: kvm core dump on hotplug (pci_add) Status in QEMU: Fix Released

Re: [Qemu-devel] Re: Network bridging without adding bridge with brctl, possible?

2011-02-20 Thread Jan Kiszka
On 2011-02-20 16:19, Gerhard Wiesinger wrote: On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-20 13:49, Gerhard Wiesinger wrote: On Sun, 20 Feb 2011, Jan Kiszka wrote: On 2011-02-19 20:32, Gerhard Wiesinger wrote: Hello, http://virt.kernelnewbies.org/MacVTap ip link add link eth1

  1   2   >