[Qemu-devel] [PATCH 6/8] target-ppc: Rework get_physical_address()

2013-02-11 Thread David Gibson
Currently get_physical_address() first checks to see if translation is enabled in the MSR, then in the translation on case switches on the mmu type. Except that for BookE MMUs, translation is always on, and so it has to switch in the "translation off" case as well and do the same thing as the tran

Re: [Qemu-devel] [RFC PATCH RDMA support v2: 3/6] install new monitor commands and setup RDMA capabilities

2013-02-11 Thread Michael R. Hines
None of the other migration QMP commands use dashes. Shouldn't I stay consistent with the other commands? If someone wants to re-work the migration command structure as a whole, I'll certainly adapt to the new structure. On 02/11/2013 05:58 PM, Eric Blake wrote: +++ b/qapi-schema.json #

Re: [Qemu-devel] [PATCH] (RFC) target-ppc: Remove vestigial PowerPC 620 support

2013-02-11 Thread Alexander Graf
On 11.02.2013, at 16:13, Andreas Färber wrote: > Am 11.02.2013 05:50, schrieb David Gibson: >> The PowerPC 620 was the very first 64-bit PowerPC implementation, but >> hardly anyone ever actually used the chips. qemu notionally supports the >> 620, but since we don't actually have code to implem

Re: [Qemu-devel] [PATCH 4/6] qemu-log: Rename the public-facing cpu_set_log function to qemu_set_log

2013-02-11 Thread Peter Maydell
On 11 February 2013 19:28, Andreas Färber wrote: > Am 11.02.2013 17:41, schrieb Peter Maydell: >> diff --git a/hw/ppc.c b/hw/ppc.c >> index c52e22f..6053bd5 100644 >> --- a/hw/ppc.c >> +++ b/hw/ppc.c >> @@ -1189,7 +1189,7 @@ void PPC_debug_write (void *opaque, uint32_t addr, >> uint32_t val) >>

Re: [Qemu-devel] Char flow control patches

2013-02-11 Thread Amit Shah
On (Mon) 11 Feb 2013 [12:37:34], Amit Shah wrote: > On (Wed) 30 Jan 2013 [08:38:50], Anthony Liguori wrote: > > Amit Shah writes: > > > > > Hi Anthony, > > > > > > I did some basic testing of the char flow control patches from your > > > char-flow.2 branch. With the following patch applied, thin

[Qemu-devel] [Bug 1122492] [NEW] qemu and grub2 rescue floppy don't get along

2013-02-11 Thread Cole Robinson
Public bug reported: With qemu.git as of Feb 11 2013: # grub2-mkrescue -o test.img # ./x86_64-softmmu/qemu-system-x86_64 -fda test.img -curses SeaBIOS (version ?-20130206_051134-ccnode4) iPXE v1.0.0-591-g7aee315 iPXE (http://ipxe.org) 00:03.0 C900 PCI2.10 PnP PMM+07FC7EC0+07F87EC0 C900 Bootin

[Qemu-devel] [Bug 921208] Re: win7/x64 installer hangs on startup with 0x0000005d.

2013-02-11 Thread Cole Robinson
Just for reference, the qemu-devel thread mentioned in comment #11 is: https://lists.gnu.org/archive/html/qemu-devel/2012-09/msg00972.html -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/921208 Title:

[Qemu-devel] [PATCH v10 1/4] block: Add synchronous wrapper for bdrv_co_is_allocated_above

2013-02-11 Thread Miroslav Rezanina
There's no synchronous wrapper for bdrv_co_is_allocated_above function so it's not possible to check for sector allocation in an image with a backing file. Signed-off-by: Miroslav Rezanina --- block.c | 39 +++ include/block/block.h |2 ++

[Qemu-devel] [PATCH v10 0/4] Add subcommand compare for qemu-img

2013-02-11 Thread Miroslav Rezanina
This is 10th version of patch adding compare subcommand that compares two images. Compare has following criteria: - only data part is compared - unallocated sectors are not read to be zeroed/unallocated to compare rest - qemu-img returns: - 0 if images are identical - 1 if images differ

[Qemu-devel] [PATCH v10 4/4] qemu-iotests: Add qemu-img compare test

2013-02-11 Thread Miroslav Rezanina
Simple test for qemu-img compare to check it's working correctly. Signed-off-by: Miroslav Rezanina --- tests/qemu-iotests/048 | 77 tests/qemu-iotests/048.out | 25 ++ tests/qemu-iotests/group |1 + 3 files changed, 103 inser

[Qemu-devel] [PATCH v10 3/4] This patch adds new qemu-img subcommand that compares content of two disk images.

2013-02-11 Thread Miroslav Rezanina
Signed-off-by: Miroslav Rezanina --- qemu-img-cmds.hx |6 + qemu-img.c | 290 +- qemu-img.texi| 53 ++ 3 files changed, 348 insertions(+), 1 deletions(-) diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx index 9283776..4

Re: [Qemu-devel] tap devices not receiving packets from a bridge

2013-02-11 Thread Peter Lieven
On 23.01.2013 11:03, Michael S. Tsirkin wrote: On Tue, Jan 22, 2013 at 10:04:07AM +0100, Peter Lieven wrote: On 23.11.2012 12:01, Michael S. Tsirkin wrote: On Fri, Nov 23, 2012 at 10:41:21AM +0100, Peter Lieven wrote: Am 23.11.2012 um 08:02 schrieb Stefan Hajnoczi: On Thu, Nov 22, 2012 at 0

[Qemu-devel] [PATCH v10 2/4] qemu-img: Add "Quiet mode" option

2013-02-11 Thread Miroslav Rezanina
There can be a need to turn output to stdout off. This patch adds a -q option that enable "Quiet mode". In Quiet mode, only errors are printed out. Signed-off-by: Miroslav Rezanina --- block.c | 12 ++-- blockdev.c|6 +- include/block/block.h |3 +- qemu-img-c

Re: [Qemu-devel] [PATCH for-1.4 0/2] fix migration failure from 1.3 due to SeaBIOS size change

2013-02-11 Thread Philipp Hahn
Hello, On Wednesday 06 February 2013 01:48:24 Michael Roth wrote: > Migration from 1.3 currently fails due to a mismatch between the expected > size of 256KB and the received size of 128KB for seabios. ... > 2) We can begin checking in past versions of SeaBIOS and other roms and > loading those ac

Re: [Qemu-devel] [PATCH for-1.4 0/2] fix migration failure from 1.3 due to SeaBIOS size change

2013-02-11 Thread Paolo Bonzini
Il 11/02/2013 17:13, Philipp Hahn ha scritto: > We currenty are carrying the attached patch with our Debian based > distribution, which fixes a very similar issue with the PXE-BIOSs, because > Debian provides it's own compilation of etherboot and iPXE. > > As each upgrade threatens to break all

<    1   2   3