Dear all,
For your information, a phone call will be held this week on Wed July
30, 17h-18h CET to address the topic of dynamic instantiation of QEMU
platform devices in machine files (using the -device qemu option).
Related threads are:
http://lists.gnu.org/archive/html/qemu-ppc/2014-07/msg00047
On Wed, Jul 23, 2014 at 12:55:32PM +0100, Stefan Hajnoczi wrote:
> This document explains how IOThreads and the main loop are related,
> especially how to write code that can run in an IOThread. Currently
> only virtio-blk-data-plane uses these techniques. The next obvious
> target is virtio-scsi
On Thu, Jul 24, 2014 at 08:11:26PM +0400, Michael Tokarev wrote:
> Signed-off-by: Michael Tokarev
> ---
> qemu-options.hx |2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 9e54686..1549625 100644
> --- a/qemu-options.hx
> +++ b/
Parallels image format has several additional fields inside:
- nb_sectors is actually 64 bit wide. Upper 32bits are not used for
images with signature "WithoutFreeSpace" and must be explicitly
zeroed according to Parallels. They will be used for images with
signature "WithouFreSpacExt"
- inus
Signed-off-by: Denis V. Lunev
Reviewed-by: Jeff Cody
CC: Kevin Wolf
CC: Stefan Hajnoczi
---
block/parallels.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/block/parallels.c b/block/parallels.c
index e39..16d14ad 100644
--- a/block/parallels.c
+++ b/block/p
and rework error path a bit. There is no difference at the moment, but
the code will be definitely shorter when additional processing will
be required for WithouFreSpacExt
Signed-off-by: Denis V. Lunev
CC: Jeff Cody
CC: Kevin Wolf
CC: Stefan Hajnoczi
---
block/parallels.c | 13 -
Parallels has released in the recent updates of Parallels Server 5/6
new addition to his image format. Images with signature WithouFreSpacExt
have offsets in the catalog coded not as offsets in sectors (multiple
of 512 bytes) but offsets coded in blocks (i.e. header->tracks * 512)
In this case to
Parallels has released in the recent updates of Parallels Server 5/6
new addition to his image format. Images with signature WithouFreSpacExt
have offsets in the catalog coded not as offsets in sectors (multiple
of 512 bytes) but offsets coded in blocks (i.e. header->tracks * 512)
In this case all
On 07/28/2014 12:09 PM, Stefan Hajnoczi wrote:
> On Wed, Jul 23, 2014 at 04:43:27AM -, selvakumar wrote:
>> Public bug reported:
>>
>> [root@localhost pkgs]# qemu-img create virtualdisk.img 100M
>> qemu-img: symbol lookup error: qemu-img: undefined symbol: glfs_discard_async
>
You need to upd
** Changed in: qemu
Status: New => Invalid
** Bug watch added: Red Hat Bugzilla #1096654
https://bugzilla.redhat.com/show_bug.cgi?id=1096654
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/13
On 28.07.14 17:03, David Hildenbrand wrote:
On 28.07.2014, at 16:16, David Hildenbrand wrote:
On 10.07.14 15:10, Christian Borntraeger wrote:
From: David Hildenbrand
If a cpu is stopped, it must never be allowed to run and no interrupt may wake
it
up. A cpu also has to be unhalted if it i
* Michael S. Tsirkin (m...@redhat.com) wrote:
> Support resizeable blobs: we allocate more memory than currently
> available in the blob, which can later be filled in.
>
> Signed-off-by: Michael S. Tsirkin
> ---
> include/hw/loader.h | 14 +++--
> include/hw/nvram/fw_cfg.h | 2 +-
> h
On 07/28/2014 09:19 AM, Stefan Hajnoczi wrote:
> On Wed, Jul 09, 2014 at 10:43:13AM +0800, Chunyan Liu wrote:
>> Add nocow info in 'qemu-img info' output to show whether the file
>> currently has NOCOW flag set or not.
>>
>> Signed-off-by: Chunyan Liu
>> ---
>> Changes:
>> - update output info t
On Mon, Jul 28, 2014 at 05:52:27PM +0100, Dr. David Alan Gilbert wrote:
> * Michael S. Tsirkin (m...@redhat.com) wrote:
> > Support resizeable blobs: we allocate more memory than currently
> > available in the blob, which can later be filled in.
> >
> > Signed-off-by: Michael S. Tsirkin
> > ---
>
Il 28/07/2014 21:07, Michael S. Tsirkin ha scritto:
> On Mon, Jul 28, 2014 at 05:52:27PM +0100, Dr. David Alan Gilbert wrote:
>> * Michael S. Tsirkin (m...@redhat.com) wrote:
>>> Support resizeable blobs: we allocate more memory than currently
>>> available in the blob, which can later be filled in
Suggested-by: Markus Armbruster
Signed-off-by: Hu Tao
Signed-off-by: Peter Lieven
---
blockdev.c | 30 ++
include/qapi/util.h | 17 +
qapi/Makefile.objs |2 +-
qapi/qapi-util.c| 34 ++
4 files ch
Peter Lieven (2):
rename parse_enum_option to qapi_enum_parse and make it public
qemu-nbd: add option to set detect-zeroes mode
blockdev.c | 30 ---
include/qapi/util.h | 17 +++
qapi/Makefile.objs |2 +-
qapi/qapi-util.c| 34 +++
Signed-off-by: Peter Lieven
---
qemu-nbd.c | 81 +++-
1 file changed, 53 insertions(+), 28 deletions(-)
diff --git a/qemu-nbd.c b/qemu-nbd.c
index 626e584..75cf54f 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -18,11 +18,13 @@
#include "
Signed-off-by: Peter Lieven
---
qemu-options.hx |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qemu-options.hx b/qemu-options.hx
index 1549625..251535f 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -427,7 +427,7 @@ DEF("drive", HAS_ARG, QEMU_OPTION_drive,
"
On 07/28/2014 01:43 PM, Peter Lieven wrote:
> Suggested-by: Markus Armbruster
> Signed-off-by: Hu Tao
> Signed-off-by: Peter Lieven
> ---
> blockdev.c | 30 ++
> include/qapi/util.h | 17 +
> qapi/Makefile.objs |2 +-
> qapi/qapi-uti
On 07/28/2014 01:43 PM, Peter Lieven wrote:
> Signed-off-by: Peter Lieven
> ---
> qemu-nbd.c | 81
> +++-
> 1 file changed, 53 insertions(+), 28 deletions(-)
>
> @@ -57,45 +60,47 @@ static void usage(const char *name)
> "Usage: %s [OPT
On 07/28/2014 01:53 PM, Peter Lieven wrote:
> Signed-off-by: Peter Lieven
> ---
> qemu-options.hx |2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Eric Blake
>
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 1549625..251535f 100644
> --- a/qemu-options.hx
> +++
Am 28.07.2014 um 21:58 schrieb Eric Blake :
> On 07/28/2014 01:43 PM, Peter Lieven wrote:
>> Suggested-by: Markus Armbruster
>> Signed-off-by: Hu Tao
>> Signed-off-by: Peter Lieven
>> ---
>> blockdev.c | 30 ++
>> include/qapi/util.h | 17 +++
Signed-off-by: Michael S. Tsirkin
---
Paolo, so the following is needed on top of your patch?
hw/i386/pc_piix.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index 4524e6b..9694f88 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -326,6 +326,
- Tweak error message for legacy machine type:
Basically if table size exceeds the limits we set all
bets are off for migration: e.g. it can start failing even
within given qemu minor version simply because of a bugfix.
- Increase table size to 128k.
- Make sure we notice it long before we st
On Mon, Jul 28, 2014 at 06:08:53PM +0200, Paolo Bonzini wrote:
> Il 28/07/2014 17:59, Michael S. Tsirkin ha scritto:
> > On Mon, Jul 28, 2014 at 05:34:16PM +0200, Paolo Bonzini wrote:
> >> This patch avoids that similar changes break QEMU again in the future.
> >> QEMU will now hard-code 64k as the
On Mon, Jul 28, 2014 at 05:34:13PM +0200, Paolo Bonzini wrote:
> v3->v4:
> drop all pretense of supporting bridges [me]
>
> v2->v3:
> fix tests/acpi-test-data/pc/DSDT [Peter]
> track down "make check" failure, fix it [patch 4, me]
> split patch 2 in two parts [mst]
>
On 07/25/2014 07:16 AM, Stefan Hajnoczi wrote:
> When QEMU is executed as part of a test case or from a script, it is
> usually desirable to exit if the parent process terminates. This
> ensures that "leaked" QEMU processes do not continue consuming resources
> after their parent has died.
>
> Th
On 07/25/2014 09:39 AM, Sanidhya Kashyap wrote:
> From: "Dr. David Alan Gilbert"
>
> Stefan Berger's to create a QEMUFile that goes to a memory buffer;
Missing something. Maybe you meant:
This is based on Stefan Berger's patch to create ...
> from:
>
> http://lists.gnu.org/archive/html/qemu-
On Mon, Jul 28, 2014 at 12:37:50PM +0100, James Hogan wrote:
> MIPS registers an unassigned access handler which raises a guest bus
> error exception. However this causes QEMU to crash when KVM is enabled
> as it isn't called from the main execution loop so longjmp() gets called
> without a corresp
On Mon, Jul 28, 2014 at 11:58:22PM +0800, Dongxue Zhang wrote:
> Use 'if' to make sure the real msb greater than the lsb. As the compiler may
> not do this.
What are you trying to fix exactly? These cases are defined as
"unpredictable" in the MIPS ISA manual, which is what is implemented in
QEMU.
On Mon, Jul 28, 2014 at 11:58:21PM +0800, Dongxue Zhang wrote:
> Free t0 and t1 in opcode OPC_DINSV.
>
> Signed-off-by: Dongxue Zhang
> ---
> target-mips/translate.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index d7b8c4d..c3
On Fri, Jul 18, 2014 at 04:44:21PM +0200, Stefan Weil wrote:
> Line numbers changed, and some translations were missing after commit
> 3d914488aee3dc1bf495e461aedf8fb4e5bb2270.
>
> Update also "Show Tabs" to a more common translation, and remove some
> old unused lines at the end.
>
> Signed-off-
Add new translations for recently added messages.
Signed-off-by: Aurelien Jarno
---
po/fr_FR.po | 54 +++---
1 file changed, 39 insertions(+), 15 deletions(-)
diff --git a/po/fr_FR.po b/po/fr_FR.po
index ec54eb9..bbb5ef8 100644
--- a/po/fr_FR.po
On 07/25/2014 09:39 AM, Sanidhya Kashyap wrote:
> I have provided a qmp interface for getting the list of qdevified devices
> that have been registered with SaveVMHandlers.
>
> Signed-off-by: Sanidhya Kashyap
> ---
> qapi-schema.json | 22 ++
> qmp-commands.hx | 25 +
On 07/25/2014 09:39 AM, Sanidhya Kashyap wrote:
> In this patch, I have made the following changes:
>
> * changed the DPRINT statement.
> * renamed the variables.
> * added noqdev variable which decides which option to use for resetting.
> * added devices option which can help in resetting one or
On 28 July 2014 22:42, Aurelien Jarno wrote:
> On Mon, Jul 28, 2014 at 11:58:22PM +0800, Dongxue Zhang wrote:
>> Use 'if' to make sure the real msb greater than the lsb. As the compiler may
>> not do this.
>
> What are you trying to fix exactly? These cases are defined as
> "unpredictable" in the
On Mon, Jul 28, 2014 at 11:01:02PM +0100, Peter Maydell wrote:
> On 28 July 2014 22:42, Aurelien Jarno wrote:
> > On Mon, Jul 28, 2014 at 11:58:22PM +0800, Dongxue Zhang wrote:
> >> Use 'if' to make sure the real msb greater than the lsb. As the compiler
> >> may
> >> not do this.
> >
> > What ar
On 28 July 2014 23:32, Aurelien Jarno wrote:
> On Mon, Jul 28, 2014 at 11:01:02PM +0100, Peter Maydell wrote:
>> This may be true, but the TCG README doesn't define negative
>> lengths as being "unspecified behaviour" (ie guaranteed to at
>> least not crash even if the result isn't specified), and
On Mon, Jul 28, 2014 at 11:34:30PM +0100, Peter Maydell wrote:
> On 28 July 2014 23:32, Aurelien Jarno wrote:
> > On Mon, Jul 28, 2014 at 11:01:02PM +0100, Peter Maydell wrote:
> >> This may be true, but the TCG README doesn't define negative
> >> lengths as being "unspecified behaviour" (ie guara
On 07/25/2014 02:12 AM, Markus Armbruster wrote:
> Stefan Hajnoczi writes:
>
>> When QEMU is executed as part of a test case or from a script, it is
>> usually desirable to exit if the parent process terminates. This
>> ensures that "leaked" QEMU processes do not continue consuming resources
>>
Hi,
> -Original Message-
> From: Alexander Graf [mailto:ag...@suse.de]
> Sent: Monday, July 28, 2014 6:45 PM
> Subject: Re: [PATCH v2 7/7] spapr: fix possible memory leak
>
>
> On 25.07.14 08:52, arei.gong...@huawei.com wrote:
> > From: Gonglei
> >
> > get_boot_devices_list() will mallo
On Mon, 07/28 16:11, Stefan Hajnoczi wrote:
> On Tue, May 27, 2014 at 04:49:22PM +0800, Fam Zheng wrote:
> > +if (!bs->backing_hd) {
> > +memset(whole_grain, 0, skip_start_sector << BDRV_SECTOR_BITS);
> > +memset(whole_grain + (skip_end_sector << BDRV_SECTOR_BITS), 0,
> > +
From: ChenLiang
Previously, the strength to throttle vcpu is constant that is too
arbitrarily. This patch(suggested by Juan) increases the strength
according to the times of memory iterator.
Signed-off-by: ChenLiang
Signed-off-by: Gonglei
---
arch_init.c | 4 +++-
1 file changed, 3 insertions
Hi,
> -Original Message-
> From: Gonglei (Arei)
> Sent: Monday, July 28, 2014 6:16 PM
> Subject: RE: [PATCH v2 1/7] bootindex: add modify_boot_device_path function
>
> > -Original Message-
> > From: Gerd Hoffmann [mailto:kra...@redhat.com]
> > Sent: Monday, July 28, 2014 6:02 PM
>
Quoting Alex Bligh (a...@alex.org.uk):
>
> On 22 Jul 2014, at 19:43, Alex Bligh wrote:
>
> > Testing has been light to date (i.e.
> > can I migrate it inbound with -S without anything complaining).
thanks, Alex!
>
> I've given this quite a bit more testing today.
>
> It works fine qemu-kvm 1
Am 28.07.2014 23:44, schrieb Aurelien Jarno:
> Add new translations for recently added messages.
>
> Signed-off-by: Aurelien Jarno
> ---
> po/fr_FR.po | 54 +++---
> 1 file changed, 39 insertions(+), 15 deletions(-)
>
Reviewed-by: Stefan Weil
Il 28/07/2014 23:27, Michael S. Tsirkin ha scritto:
> OK, I applied this, and did some tweaks on top that I think
> make it a bit safer.
> It's very very late in the release cycle, but also very late in the
> day so I don't want to risk sending pull request now.
> I did push it out: tag for_upstrea
Michael, Paolo and Stefano,
Any comments?
Thanks
Tiejun
On 2014/7/24 19:30, Tiejun Chen wrote:
As we discussed currently we have to introduce a separate machine
to work out igd passthrough.
Tiejun Chen (4):
hw:i386:pc_pii
Eric Blake writes:
> On 07/25/2014 02:12 AM, Markus Armbruster wrote:
>> Stefan Hajnoczi writes:
>>
>>> When QEMU is executed as part of a test case or from a script, it is
>>> usually desirable to exit if the parent process terminates. This
>>> ensures that "leaked" QEMU processes do not cont
Signed-off-by: Paolo Bonzini
---
po/it.po | 63 ---
1 file changed, 40 insertions(+), 23 deletions(-)
diff --git a/po/it.po b/po/it.po
index a62665c..e46fb3a 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,13 +1,13 @@
# Italian translation
Paolo Bonzini writes:
> v3->v4:
> drop all pretense of supporting bridges [me]
Does this non-support need documentation? None visible in diffstat...
>
> v2->v3:
> fix tests/acpi-test-data/pc/DSDT [Peter]
> track down "make check" failure, fix it [patch 4, me]
> split pa
Il 29/07/2014 08:16, Markus Armbruster ha scritto:
>> > v3->v4:
>> >drop all pretense of supporting bridges [me]
> Does this non-support need documentation? None visible in diffstat...
Yes, it should. It was already broken for 1.7->2.0.
Paolo
Eric Auger writes:
> Dear all,
>
> For your information, a phone call will be held this week on Wed July
> 30, 17h-18h CET to address the topic of dynamic instantiation of QEMU
> platform devices in machine files (using the -device qemu option).
>
> Related threads are:
> http://lists.gnu.org/arc
On Mon, 07/28 17:08, Paolo Bonzini wrote:
> This will be used for both scsi_block_new_request and the scsi-block
> implementation of parse_cdb.
>
> Signed-off-by: Paolo Bonzini
> ---
> hw/scsi/scsi-disk.c | 38 ++
> 1 file changed, 26 insertions(+), 12 deletio
101 - 155 of 155 matches
Mail list logo