[Qemu-devel] [PATCH 03/24] petalogix_ml605: convert to memory API

2011-10-10 Thread Avi Kivity
Signed-off-by: Avi Kivity --- hw/petalogix_ml605_mmu.c | 15 +++ 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/hw/petalogix_ml605_mmu.c b/hw/petalogix_ml605_mmu.c index 2a0f7fd..fb4ba29 100644 --- a/hw/petalogix_ml605_mmu.c +++ b/hw/petalogix_ml605_mmu.c @@ -149,8 +

[Qemu-devel] [PATCH 06/24] hw/arm11mpcore: Clean up to avoid using sysbus_mmio_init_cb2

2011-10-10 Thread Avi Kivity
From: Peter Maydell Clean up the initialisation of the realview_mpcore device to avoid using sysbus_init_mmio_cb2(): we can pass through the MemoryRegion of the private arm11mpcore_priv device directly now. Signed-off-by: Peter Maydell Signed-off-by: Avi Kivity --- hw/arm11mpcore.c | 13 +--

[Qemu-devel] [PATCH 16/24] rtc: Convert to isa_register_ioport

2011-10-10 Thread Avi Kivity
From: Richard Henderson Signed-off-by: Richard Henderson Signed-off-by: Avi Kivity --- hw/mc146818rtc.c | 15 --- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/hw/mc146818rtc.c b/hw/mc146818rtc.c index feb3b25..2aaca2f 100644 --- a/hw/mc146818rtc.c +++ b/hw/mc14

[Qemu-devel] [PATCH 22/24] vmport: Convert to isa_register_ioport

2011-10-10 Thread Avi Kivity
From: Richard Henderson Signed-off-by: Richard Henderson Signed-off-by: Avi Kivity --- hw/vmport.c | 16 +--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/hw/vmport.c b/hw/vmport.c index c8aefaa..b5c6fa1 100644 --- a/hw/vmport.c +++ b/hw/vmport.c @@ -38,6 +38,7

[Qemu-devel] [PATCH v2 0/5] target-arm: Implement UDIV/SDIV and fused multiply-accumulate

2011-10-10 Thread Peter Maydell
This patch series implements support in QEMU for some (user-mode) instructions which are present on some recent processors (eg Cortex-A15). The new instructions are UDIV/SDIV (previously only available as a Thumb encoding for R and M-class cores, now an optional extension to ARMv7A), and the fused

[Qemu-devel] [PATCH v2 5/5] target-arm: Implement VFPv4 fused multiply-accumulate insns

2011-10-10 Thread Peter Maydell
Implement the fused multiply-accumulate instructions (VFMA, VFMS, VFNMA, VFNMS) which are new in VFPv4. Signed-off-by: Peter Maydell --- target-arm/cpu.h |1 + target-arm/helper.c| 14 + target-arm/helper.h|3 ++ target-arm/translate.c | 72 +

[Qemu-devel] [PATCH v2 4/5] softfloat: Implement fused multiply-add

2011-10-10 Thread Peter Maydell
Implement fused multiply-add as a softfloat primitive. This implements "a+b*c" as a single step without any intermediate rounding; it is specified in IEEE 754-2008 and implemented in a number of CPUs. Signed-off-by: Peter Maydell --- fpu/softfloat-specialize.h | 178 ++ fpu/soft

[Qemu-devel] [PATCH v2 3/5] target-arm: Add ARM UDIV/SDIV support

2011-10-10 Thread Peter Maydell
Add support for UDIV and SDIV in ARM mode. This is a new optional feature for A profile cores (Thumb mode has had UDIV and SDIV for M profile cores for some time). Signed-off-by: Peter Maydell --- target-arm/cpu.h |1 + target-arm/helper.c|5 - target-arm/translate.c | 19

[Qemu-devel] [PATCH 14/24] gus: Convert to isa_register_portio_list

2011-10-10 Thread Avi Kivity
From: Richard Henderson Signed-off-by: Richard Henderson Signed-off-by: Avi Kivity --- hw/gus.c | 38 +++--- 1 files changed, 19 insertions(+), 19 deletions(-) diff --git a/hw/gus.c b/hw/gus.c index a65192d..b5eb548 100644 --- a/hw/gus.c +++ b/hw/gus.c @@ -23

[Qemu-devel] [PATCH 15/24] m48t59: Convert to isa_register_ioport

2011-10-10 Thread Avi Kivity
From: Richard Henderson The sysbus interface is as yet unconverted. Signed-off-by: Richard Henderson Signed-off-by: Avi Kivity --- hw/m48t59.c | 15 --- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/hw/m48t59.c b/hw/m48t59.c index 0cc361e..f318e67 100644 --- a/

[Qemu-devel] [PATCH 09/24] isa: Tidy support code for isabus_get_fw_dev_path

2011-10-10 Thread Avi Kivity
From: Richard Henderson The only user of ISADevice.ioports is isabus_get_fw_dev_path, and it only looks at the first entry of the array. Which suggests that this entire array+sort operation can be replaced by a simple minimum. Signed-off-by: Richard Henderson Signed-off-by: Avi Kivity --- hw

Re: [Qemu-devel] buildbot failure in qemu on default_openbsd_4.9

2011-10-10 Thread Kevin Wolf
Am 10.10.2011 17:35, schrieb Daniel Gollub: > Hi Gerd, Hi Kevin, > > On Monday, October 10, 2011 04:23:28 PM Gerd Hoffmann wrote: >>> Gerd, Brad, does one of your buildbots have some resources left to build >>> the block branch on OpenBSD (and for Gerd, possibly mingw) as well? >> >> No problem, c

[Qemu-devel] [PATCH v2 2/5] target-arm: Rename ARM_FEATURE_DIV to _THUMB_DIV

2011-10-10 Thread Peter Maydell
Rename the ARM_FEATURE_DIV feature bit to _THUMB_DIV, to make room for a new feature switch enabling DIV in the ARM encoding. (Cores may implement either (a) no divide insns (b) divide insns in Thumb encodings only (c) divide insns in both ARM and Thumb encodings.) Signed-off-by: Peter Maydell --

[Qemu-devel] [PATCH 13/24] fdc: Convert to isa_register_portio_list

2011-10-10 Thread Avi Kivity
From: Richard Henderson Signed-off-by: Richard Henderson Signed-off-by: Avi Kivity --- hw/fdc.c | 34 -- 1 files changed, 4 insertions(+), 30 deletions(-) diff --git a/hw/fdc.c b/hw/fdc.c index 0f1cee9..4b06e04 100644 --- a/hw/fdc.c +++ b/hw/fdc.c @@ -424,7 +

Re: [Qemu-devel] [PATCH] virtio-9p: fix QEMU build break

2011-10-10 Thread Aneesh Kumar K.V
On Mon, 10 Oct 2011 18:30:28 +0800, Zhi Yong Wu wrote: > qemu build break due to the redefinition of struct file_handle. My > qemu.git/HEAD is 8acbc9b21d757a6be4f8492e547b8159703a0547 > > Below is the log: > [root@f15 qemu]# make > CCqapi-generated/qga-qapi-types.o > LINK qemu-ga > C

[Qemu-devel] [PATCH v2 1/5] target-arm: v6 media multiply space: UNDEF on unassigned encodings

2011-10-10 Thread Peter Maydell
Clean up the decoding of the v6 media multiply space so that we UNDEF on unassigned encodings rather than randomly interpreting them as some instruction in this space. Signed-off-by: Peter Maydell --- target-arm/translate.c | 24 1 files changed, 20 insertions(+), 4 de

Re: [Qemu-devel] [PATCH 0/2] usb-ohci: fixes to allow usb-net to work

2011-10-10 Thread Peter Maydell
On 14 September 2011 18:48, Peter Maydell wrote: > This patchset contains a couple of fixes to usb-ohci which I had to make > in the course of getting usb-net to work on the Beagle (which uses OHCI > rather than UHCI). The main one is making the usb-ohci controller model > honour the endpoint maxi

Re: [Qemu-devel] [PATCH] virtio-9p: fix QEMU build break

2011-10-10 Thread Aneesh Kumar K.V
On Mon, 10 Oct 2011 22:05:21 +0530, "Aneesh Kumar K.V" wrote: > On Mon, 10 Oct 2011 18:30:28 +0800, Zhi Yong Wu > wrote: > > qemu build break due to the redefinition of struct file_handle. My > > qemu.git/HEAD is 8acbc9b21d757a6be4f8492e547b8159703a0547 > > > > Below is the log: > > [root@f15

[Qemu-devel] Hack integrating SeaBios / LinuxBoot option rom with QEMU trace backends

2011-10-10 Thread Daniel P. Berrange
I've been investigating where time disappears to when booting Linux guests. Initially I enabled DEBUG_BIOS in QEMU's hw/pc.c, and then hacked it so that it could print a timestamp before each new line of debug output. The problem with that is that it slowed down startup, so the timings I was exami

Re: [Qemu-devel] [PATCH v3 0/6]: block: Add I/O status support

2011-10-10 Thread Kevin Wolf
Am 26.09.2011 22:43, schrieb Luiz Capitulino: > This series adds support to the block layer to keep track of devices' > I/O status. That information is also made available in QMP and HMP. > > The goal here is to allow management applications that miss the > BLOCK_IO_ERROR event to able to query th

Re: [Qemu-devel] [PATCH] block/vvfat: Fix potential memory leaks and other memory errors

2011-10-10 Thread Kevin Wolf
Am 30.09.2011 23:29, schrieb Stefan Weil: > cppcheck reported memory leaks and mismatched g_malloc() with free() > instead of g_free(). > > Fix these errors. > > Cc: Kevin Wolf > Signed-off-by: Stefan Weil Thanks, applied to the block branch. Kevin

Re: [Qemu-devel] [PATCH] block/vvfat: Remove unused code

2011-10-10 Thread Kevin Wolf
Am 01.10.2011 09:05, schrieb Stefan Weil: > The unused code was detected using cppcheck. > > Cc: Kevin Wolf > Signed-off-by: Stefan Weil Thanks, applied to the block branch. Kevin

[Qemu-devel] [PATCH] vvfat: Fix potential buffer overflow

2011-10-10 Thread Kevin Wolf
path2[PATH_MAX] can be used for the null termination, so make the array big enough to allow this. Signed-off-by: Kevin Wolf --- block/vvfat.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/block/vvfat.c b/block/vvfat.c index ba207e2..7e9e35a 100644 --- a/block/vvfat.c

Re: [Qemu-devel] Safely reopening image files by stashing fds

2011-10-10 Thread Kevin Wolf
Am 09.08.2011 11:22, schrieb supriya kannery: > Kevin Wolf wrote: >> Am 08.08.2011 09:02, schrieb Supriya Kannery: >> >>> On 08/05/2011 09:19 PM, Anthony Liguori wrote: >>> On 08/05/2011 10:43 AM, Kevin Wolf wrote: > Am 05.08.2011 17:24, schrieb Stefan Hajnoczi: >

Re: [Qemu-devel] [PATCH] runstate: do not discard runstate changes when paused

2011-10-10 Thread Luiz Capitulino
On Tue, 4 Oct 2011 14:04:45 +0200 Paolo Bonzini wrote: > Trying to migrate a paused machine fails. The reason is that > the RSTATE_PRE_MIGRATE is reached with vm_stop, and this > transition is eaten when the vm is already paused. This patch > fixes the problem by always going through runstate_

Re: [Qemu-devel] [PATCH v2] runstate: add more valid transitions

2011-10-10 Thread Luiz Capitulino
On Tue, 4 Oct 2011 15:15:40 +0200 Paolo Bonzini wrote: > This patch adds more valid transitions to the table, and avoids > that the VM remains stuck in RSTATE_SAVEVM state when savevm is > done on a paused virtual machine. > > Signed-off-by: Paolo Bonzini Looks good, but it needs to be rebase

Re: [Qemu-devel] Hack integrating SeaBios / LinuxBoot option rom with QEMU trace backends

2011-10-10 Thread Anthony Liguori
On 10/10/2011 12:08 PM, Daniel P. Berrange wrote: I've been investigating where time disappears to when booting Linux guests. Initially I enabled DEBUG_BIOS in QEMU's hw/pc.c, and then hacked it so that it could print a timestamp before each new line of debug output. The problem with that is tha

Re: [Qemu-devel] Hack integrating SeaBios / LinuxBoot option rom with QEMU trace backends

2011-10-10 Thread Alexander Graf
On 10.10.2011, at 20:53, Anthony Liguori wrote: > On 10/10/2011 12:08 PM, Daniel P. Berrange wrote: >> I've been investigating where time disappears to when booting Linux guests. >> >> Initially I enabled DEBUG_BIOS in QEMU's hw/pc.c, and then hacked it so >> that it could print a timestamp befo

Re: [Qemu-devel] [PATCH v3 0/6]: block: Add I/O status support

2011-10-10 Thread Luiz Capitulino
On Mon, 10 Oct 2011 19:30:32 +0200 Kevin Wolf wrote: > Am 26.09.2011 22:43, schrieb Luiz Capitulino: > > This series adds support to the block layer to keep track of devices' > > I/O status. That information is also made available in QMP and HMP. > > > > The goal here is to allow management appl

[Qemu-devel] [PATCH] QMP: Fix blockdev-snapshot-sync doc example

2011-10-10 Thread Luiz Capitulino
Fix wrong command name. Reported-by: Eric Blake Signed-off-by: Luiz Capitulino --- qmp-commands.hx |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qmp-commands.hx b/qmp-commands.hx index ea96191..9edb3b9 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -710,

Re: [Qemu-devel] Hack integrating SeaBios / LinuxBoot option rom with QEMU trace backends

2011-10-10 Thread Kevin O'Connor
On Mon, Oct 10, 2011 at 06:08:03PM +0100, Daniel P. Berrange wrote: > I've been investigating where time disappears to when booting Linux guests. > > Initially I enabled DEBUG_BIOS in QEMU's hw/pc.c, and then hacked it so > that it could print a timestamp before each new line of debug output. The

Re: [Qemu-devel] [0/4] pseries: Support and improvements for KVM Book3S-HV support (v2)

2011-10-10 Thread David Gibson
On Fri, Oct 07, 2011 at 08:57:49AM +0200, Alexander Graf wrote: > > On 30.09.2011, at 09:39, David Gibson wrote: > > > Alex Graf has added support for KVM acceleration of the pseries > > machine, using his Book3S-PR KVM variant, which runs the guest in > > userspace, emulating supervisor operatio

Re: [Qemu-devel] [0/4] pseries: Support and improvements for KVM Book3S-HV support (v2)

2011-10-10 Thread Alexander Graf
On 11.10.2011, at 01:39, David Gibson wrote: > On Fri, Oct 07, 2011 at 08:57:49AM +0200, Alexander Graf wrote: >> >> On 30.09.2011, at 09:39, David Gibson wrote: >> >>> Alex Graf has added support for KVM acceleration of the pseries >>> machine, using his Book3S-PR KVM variant, which runs the g

Re: [Qemu-devel] [0/4] pseries: Support and improvements for KVM Book3S-HV support (v2)

2011-10-10 Thread David Gibson
On Tue, Oct 11, 2011 at 02:20:48AM +0200, Alexander Graf wrote: > > On 11.10.2011, at 01:39, David Gibson wrote: > > > On Fri, Oct 07, 2011 at 08:57:49AM +0200, Alexander Graf wrote: > >> > >> On 30.09.2011, at 09:39, David Gibson wrote: > >> > >>> Alex Graf has added support for KVM accelerati

Re: [Qemu-devel] [Question] dump memory when host pci device is used by guest

2011-10-10 Thread Wen Congyang
At 10/10/2011 06:19 PM, Daniel P. Berrange Write: > On Mon, Oct 10, 2011 at 11:34:44AM +0200, Jan Kiszka wrote: >> On 2011-10-10 11:10, Daniel P. Berrange wrote: >>> On Mon, Oct 10, 2011 at 10:08:26AM +0100, Daniel P. Berrange wrote: On Mon, Oct 10, 2011 at 10:21:02AM +0800, Wen Congyang wrote

Re: [Qemu-devel] [Question] dump memory when host pci device is used by guest

2011-10-10 Thread Wen Congyang
At 10/10/2011 05:34 PM, Jan Kiszka Write: > On 2011-10-10 11:02, Daniel P. Berrange wrote: > Run gdb with "set debug remote 1" and watch the communication, it is not > that complex. But a dump command is probably simpler for those > scenarios, I agree. We have determined to introduce a new comman

[Qemu-devel] [v7 Patch 0/5]Qemu: Host pagecache setting from cmdline and monitor

2011-10-10 Thread Supriya Kannery
Currently cache setting of a block device cannot be changed without restarting a running VM. Following patchset is for enabling dynamic change of cache setting for block devices through qemu monitor and qmp. Code changes are based on patches from Christoph Hellwig and Prerna Saxena. This patch

[Qemu-devel] [v7 Patch 1/5]Qemu: Enhance "info block" to display host cache setting

2011-10-10 Thread Supriya Kannery
Enhance "info block" to display hostcache setting for each block device. Example: (qemu) info block ide0-hd0: removable=0 file=../sles11-32.raw ro=0 drv=raw encrypted=0 Enhanced to display "hostcache" setting: (qemu) info block ide0-hd0: removable=0 hostcache=1 file=../sles11-32.raw ro=0 drv=raw

[Qemu-devel] [v7 Patch 2/5]Qemu: Error classes for file reopen and data sync failure

2011-10-10 Thread Supriya Kannery
New error classes defined for file reopen failure and data sync error Signed-off-by: Supriya Kannery --- qerror.c |8 qerror.h |6 ++ 2 files changed, 14 insertions(+) Index: qemu/qerror.c === --- qemu.orig/qe

[Qemu-devel] [v7 Patch 3/5]Qemu: Cmd "block_set_hostcache" for dynamic cache change

2011-10-10 Thread Supriya Kannery
New command "block_set_hostcache" added for dynamically changing host pagecache setting of a block device. Usage: block_set_hostcache = block device = on/off Example: (qemu) block_set_hostcache ide0-hd0 off Signed-off-by: Supriya Kannery --- block.c | 54 +

[Qemu-devel] [v7 Patch 4/5]Qemu: Add commandline -drive option 'hostcache'

2011-10-10 Thread Supriya Kannery
qemu command option 'hostcache' added to -drive for block devices. While starting a VM from qemu commandline, this option can be used for setting host cache usage for block data access. Simultaneous use of 'hostcache' and 'cache' options not allowed. Signed-off-by: Supriya Kannery --- blockdev

[Qemu-devel] [v7 Patch 5/5]Qemu: New struct 'BDRVReopenState' for image files reopen

2011-10-10 Thread Supriya Kannery
Struct BDRVReopenState introduced for handling reopen state of images. This can be extended by each of the block drivers to reopen respective image files. Implementation for raw-posix is done here. Signed-off-by: Supriya Kannery --- block.c | 46 ---

[Qemu-devel] Build bug in virtio-9p-handle.c

2011-10-10 Thread David Gibson
virtio-9p-handle.c relies on a "struct file_handle". From the code it appears that this is defined in sufficiently recent glibc versions. Specifically, the file defines the structure itself if built on a glibc version < 2.14. However, this test does not appear to be correct. Fedora 16, for examp

Re: [Qemu-devel] [PATCH 1/3] ppc: Generalize the kvmppc_get_clockfreq() function

2011-10-10 Thread David Gibson
On Fri, Sep 30, 2011 at 08:06:59PM +0200, Alexander Graf wrote: > > Am 30.09.2011 um 09:50 schrieb David Gibson : > > > Currently the kvmppc_get_clockfreq() function reads the host's clock > > frequency from /proc/device-tree, which is useful to past to the guest > > in KVM setups. However, ther

[Qemu-devel] [PATCH 1/2] ppc: Generalize the kvmppc_get_clockfreq() function

2011-10-10 Thread David Gibson
Currently the kvmppc_get_clockfreq() function reads the host's clock frequency from /proc/device-tree, which is useful to past to the guest in KVM setups. However, there are some other host properties advertised in the device tree which can also be relevant to the guests. This patch, therefore, r

[Qemu-devel] [PATCH 2/2] pseries: Add device tree properties for VMX/VSX and DFP under kvm

2011-10-10 Thread David Gibson
Sufficiently recent PAPR specifications define properties "ibm,vmx" and "ibm,dfp" on the CPU node which advertise whether the VMX vector extensions (or the later VSX version) and/or the Decimal Floating Point operations from IBM's recent POWER CPUs are available. Currently we do not put these in t

Re: [Qemu-devel] Safely reopening image files by stashing fds

2011-10-10 Thread Supriya Kannery
On 10/10/2011 11:58 PM, Kevin Wolf wrote: Am 09.08.2011 11:22, schrieb supriya kannery: Kevin Wolf wrote: Am 08.08.2011 09:02, schrieb Supriya Kannery: On 08/05/2011 09:19 PM, Anthony Liguori wrote: On 08/05/2011 10:43 AM, Kevin Wolf wrote: Am 05.08.2011 17:24, schrieb Stefan Hajnoczi:

[Qemu-devel] buildbot failure in qemu on ppc-next_i386_debian_6_0

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

[Qemu-devel] buildbot failure in qemu on ppc-next_x86_64_debian_6_0

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

[Qemu-devel] [Bug 861141] Re: Installing libvirt-bin qemu slows host network

2011-10-10 Thread michael imelfort
It's been a few weeks and I'm still stuck on this. The system is working but I'm not happy with it's performance. Perhaps this is the wrong place to put this bug? If it is then could someone please guide me to where it would be better to log it. -- You received this bug notification because you

Re: [Qemu-devel] [PATCH] virtio-9p: fix QEMU build break

2011-10-10 Thread Zhi Yong Wu
On Tue, Oct 11, 2011 at 12:49 AM, Aneesh Kumar K.V wrote: > On Mon, 10 Oct 2011 22:05:21 +0530, "Aneesh Kumar K.V" > wrote: >> On Mon, 10 Oct 2011 18:30:28 +0800, Zhi Yong Wu >> wrote: >> > qemu build break due to the redefinition of struct file_handle. My >> > qemu.git/HEAD is 8acbc9b21d757a

Re: [Qemu-devel] [PATCH 3/6] block: switch bdrv_read()/bdrv_write() to coroutines

2011-10-10 Thread Zhi Yong Wu
On Thu, Oct 6, 2011 at 12:17 AM, Stefan Hajnoczi wrote: > The bdrv_read()/bdrv_write() functions call .bdrv_read()/.bdrv_write(). > They should go through bdrv_co_do_readv() and bdrv_co_do_writev() > instead in order to unify request processing code across sync, aio, and > coroutine interfaces.  T

Re: [Qemu-devel] [PATCH 6/6] block: switch bdrv_aio_writev() to coroutines

2011-10-10 Thread Zhi Yong Wu
On Thu, Oct 6, 2011 at 12:17 AM, Stefan Hajnoczi wrote: > More sync, aio, and coroutine unification.  Make bdrv_aio_writev() go > through coroutine request processing. > > Remove the dirty block callback mechanism which was needed only for aio > processing and can be done more naturally in corouti

Re: [Qemu-devel] [PATCH 0/6] block: do request processing in a coroutine

2011-10-10 Thread Zhi Yong Wu
On Thu, Oct 6, 2011 at 12:17 AM, Stefan Hajnoczi wrote: > Block layer features like dirty block tracing, I/O throttling, and live block > copy are forced to duplicate code due to the three different interfaces: > synchronous, asynchronous, and coroutines. > > Since there are bdrv_read(), bdrv_aio_

Re: [Qemu-devel] [Question] dump memory when host pci device is used by guest

2011-10-10 Thread Jan Kiszka
On 2011-10-11 04:20, Wen Congyang wrote: The other reason why it would be good, is that we would then have a clearly defined standard "QEMU dump format", instead of "libvirt dump format for QEMU" >>> >>> A core file would be that format - for direct gdb processing. No >>> proprietar

<    1   2