Re: [Qemu-devel] [PATCH] fix MinGW compilation when --enable-vnc-jpeg is specified

2011-06-18 Thread Stefan Weil
Am 18.06.2011 07:13, schrieb Roy Tam: This patch fix conflicting types for 'INT32' in basetsd.h in including qemu-common.h first. Sign-off-by: Roy Tamroy...@gmail.com -- diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c index 87fdf35..1591df0 100644 --- a/ui/vnc-enc-tight.c +++

Re: [Qemu-devel] Image streaming and live block copy

2011-06-18 Thread Stefan Hajnoczi
On Fri, Jun 17, 2011 at 1:31 PM, Marcelo Tosatti mtosa...@redhat.com wrote: On Thu, Jun 16, 2011 at 04:30:18PM +0100, Stefan Hajnoczi wrote: On Thu, Jun 16, 2011 at 11:52:43AM -0300, Marcelo Tosatti wrote: This approach does not use the backing file feature? blkstream block driver: -

Re: [Qemu-devel] Image streaming and live block copy

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 18, 2011 at 10:15 AM, Stefan Hajnoczi stefa...@gmail.com wrote: On Fri, Jun 17, 2011 at 1:31 PM, Marcelo Tosatti mtosa...@redhat.com wrote: On Thu, Jun 16, 2011 at 04:30:18PM +0100, Stefan Hajnoczi wrote: On Thu, Jun 16, 2011 at 11:52:43AM -0300, Marcelo Tosatti wrote: This

Re: [Qemu-devel] [PATCH 2/9] target-ppc: Handle memory-forced I/O controller access

2011-06-18 Thread Andreas Färber
Am 18.06.2011 um 00:59 schrieb Alexander Graf: On 17.06.2011, at 21:34, Andreas Färber wrote: Am 17.06.2011 um 16:43 schrieb Alexander Graf: From: Hervé Poussineau hpous...@reactos.org On at least the PowerPC 601, a direct-store (T=1) with bus unit ID 0x07F is special-cased as

Re: [Qemu-devel] [PATCH 2/9] target-ppc: Handle memory-forced I/O controller access

2011-06-18 Thread Alexander Graf
On 18.06.2011, at 13:15, Andreas Färber wrote: Am 18.06.2011 um 00:59 schrieb Alexander Graf: On 17.06.2011, at 21:34, Andreas Färber wrote: Am 17.06.2011 um 16:43 schrieb Alexander Graf: From: Hervé Poussineau hpous...@reactos.org On at least the PowerPC 601, a direct-store (T=1)

Re: [Qemu-devel] [PATCH v5 3/5] guest agent: add guest agent RPCs/commands

2011-06-18 Thread Luiz Capitulino
On Fri, 17 Jun 2011 23:38:16 -0300 Luiz Capitulino lcapitul...@redhat.com wrote: On Fri, 17 Jun 2011 15:19:56 -0500 Michael Roth mdr...@linux.vnet.ibm.com wrote: On 06/16/2011 01:52 PM, Luiz Capitulino wrote: On Tue, 14 Jun 2011 15:06:23 -0500 Michael Rothmdr...@linux.vnet.ibm.com

Re: [Qemu-devel] [PATCH 04/12] VMDK: separate vmdk_open by format version

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:41 AM, Fam Zheng famc...@gmail.com wrote: +static int vmdk_open_vmdk4(BlockDriverState *bs, int flags) +{ +    uint32_t magic; +    VMDK4Header header; +    BDRVVmdkState *s = bs-opaque; +    VmdkExtent *extent; + +    s-extents = qemu_mallocz(sizeof(VmdkExtent));

Re: [Qemu-devel] [PATCH 1/3] kvm: ppc: booke206: use MMU API

2011-06-18 Thread Richard Henderson
On 06/17/2011 04:28 PM, Alexander Graf wrote: +struct kvm_book3e_206_tlb_params params = {}; Hrm - I'm not familiar with that initialization. What exactly does it do? Set the struct contents to 0? Is this properly standardized? Yes and yes. r~

Re: [Qemu-devel] [PATCH v5 1/5] Add hard build dependency on glib

2011-06-18 Thread Andreas Färber
Am 12.06.2011 um 22:46 schrieb Stefan Hajnoczi: From: Anthony Liguori aligu...@us.ibm.com GLib is an extremely common library that has a portable thread implementation along with tons of other goodies. GLib and GObject have a fantastic amount of infrastructure we can leverage in QEMU

Re: [Qemu-devel] [PATCH 1/3] kvm: ppc: booke206: use MMU API

2011-06-18 Thread Alexander Graf
On 18.06.2011, at 18:13, Richard Henderson wrote: On 06/17/2011 04:28 PM, Alexander Graf wrote: +struct kvm_book3e_206_tlb_params params = {}; Hrm - I'm not familiar with that initialization. What exactly does it do? Set the struct contents to 0? Is this properly standardized? Yes and

Re: [Qemu-devel] [PATCH 06/12] VMDK: vmdk_open for mono flat

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:42 AM, Fam Zheng famc...@gmail.com wrote: Vmdk_open for mono flat image. Signed-off-by: Fam Zheng famc...@gmail.com ---  block/vmdk.c |  134 +++---  1 files changed, 128 insertions(+), 6 deletions(-) diff --git

Re: [Qemu-devel] [PATCH 07/12] VMDK: vmdk_flush for extents

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:42 AM, Fam Zheng famc...@gmail.com wrote: Vmdk flush in extent array style. Signed-off-by: Fam Zheng famc...@gmail.com ---  block/vmdk.c |    9 -  1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/block/vmdk.c b/block/vmdk.c index

Re: [Qemu-devel] [PATCH 10/12] VMDK: change get_cluster_offset return type to success flag

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:43 AM, Fam Zheng famc...@gmail.com wrote: +    if (extent-flat) { +               if (m_data) { +                       m_data-valid = 0; +               } Why copy-paste this... +        *cluster_offset = 0; +        return 0; +    }     if (m_data)        

Re: [Qemu-devel] [PATCH v5 1/5] Add hard build dependency on glib

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 18, 2011 at 5:15 PM, Andreas Färber andreas.faer...@web.de wrote: With both gcc 4.0.1 and 4.2.1, using CC=gcc -arch ppc64 CPPFLAGS=-arch ppc64 and supplying GNU gettext and GNU libiconv (since it chokes on the system iconv.h). No Google hit. Strange, Fink seems to support it:

Re: [Qemu-devel] [PATCH 11/12] VMDK: vmdk_create and options for mono flat image

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:44 AM, Fam Zheng famc...@gmail.com wrote: +    if (flat) { The flat and !flat cases are too big, please split them out into functions. +        const char desc_template[] = +        # Disk DescriptorFile\n +        version=1\n +        CID=%x\n +        

Re: [Qemu-devel] [PATCH 12/12] Add disk_size field to BlockDriverState structure

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:44 AM, Fam Zheng famc...@gmail.com wrote: The `qemu-img info` results for mono flat image are no longer accurate, as the disk size was the length of bs-file, which is not the case for multi file images (such as vmdk images with multiple files). The new field disk_size

Re: [Qemu-devel] [PATCH 0/12] Adding VMDK monolithic flat support

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 4, 2011 at 1:39 AM, Fam Zheng famc...@gmail.com wrote: This is a split patch series of the previous monolithic flat support version, with improvements according to Kevin's comments. Thanks for these patches! I have left review comments for this series. Eventually you will touch

Re: [Qemu-devel] [PATCH v5 1/5] Add hard build dependency on glib

2011-06-18 Thread Andreas Färber
Am 18.06.2011 um 19:21 schrieb Stefan Hajnoczi: On Sat, Jun 18, 2011 at 5:15 PM, Andreas Färber andreas.faer...@web.de wrote: With both gcc 4.0.1 and 4.2.1, using CC=gcc -arch ppc64 CPPFLAGS=-arch ppc64 and supplying GNU gettext and GNU libiconv (since it chokes on the system iconv.h). No

Re: [Qemu-devel] [RFC v2 23/23] 40p: Add an IBM 8514/A graphics card

2011-06-18 Thread Blue Swirl
On Thu, Jun 16, 2011 at 3:02 AM, Andreas Färber andreas.faer...@web.de wrote: The IBM E15 is equivalent to an S3 Vision864. Lacking S3 SDAC (86C716) support, the DAC indizes are translated to greyscale colors. This works sufficiently to observe firmware boot progress. Cc: Hervé Poussineau

Re: [Qemu-devel] [PATCH v5 1/5] Add hard build dependency on glib

2011-06-18 Thread Stefan Hajnoczi
On Sat, Jun 18, 2011 at 8:44 PM, Andreas Färber andreas.faer...@web.de wrote: Am 18.06.2011 um 19:21 schrieb Stefan Hajnoczi: On Sat, Jun 18, 2011 at 5:15 PM, Andreas Färber andreas.faer...@web.de wrote: With both gcc 4.0.1 and 4.2.1, using CC=gcc -arch ppc64 CPPFLAGS=-arch ppc64 and

Re: [Qemu-devel] [PATCH v2] Add support for fd: protocol

2011-06-18 Thread Blue Swirl
On Thu, Jun 16, 2011 at 5:48 PM, Corey Bryant brynt...@us.ibm.com wrote: On 06/15/2011 03:12 PM, Blue Swirl wrote: On Tue, Jun 14, 2011 at 4:31 PM, Corey Bryantbrynt...@us.ibm.com  wrote:  sVirt provides SELinux MAC isolation for Qemu guest processes and their  corresponding resources

Re: [Qemu-devel] [PATCH v5 1/5] Add hard build dependency on glib

2011-06-18 Thread Andreas Färber
Am 18.06.2011 um 22:46 schrieb Stefan Hajnoczi: On Sat, Jun 18, 2011 at 8:44 PM, Andreas Färber andreas.faer...@web.de wrote: Am 18.06.2011 um 19:21 schrieb Stefan Hajnoczi: On Sat, Jun 18, 2011 at 5:15 PM, Andreas Färber andreas.faer...@web.de wrote: With both gcc 4.0.1 and 4.2.1,

Re: [Qemu-devel] [PATCH] virtio-serial: Fix segfault on guest boot

2011-06-18 Thread Blue Swirl
On Sat, Jun 18, 2011 at 6:42 AM, Amit Shah amit.s...@redhat.com wrote: On (Fri) 17 Jun 2011 [15:08:11], Luiz Capitulino wrote:          if (!cpkt.value) { -            error_report(virtio-serial-bus: Guest failure in adding device %s\n, -                         vser-bus.qbus.name);

[Qemu-devel] [PATCH] Sparc32: dummy implementation of MXCC MMU breakpoint registers

2011-06-18 Thread Blue Swirl
Add dummy registers for SuperSPARC MXCC MMU counter breakpoints. Signed-off-by: Blue Swirl blauwir...@gmail.com --- target-sparc/cpu.h |1 + target-sparc/op_helper.c | 26 -- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/target-sparc/cpu.h

Re: [Qemu-devel] [PATCH] Sparc32: dummy implementation of MXCC MMU breakpoint registers

2011-06-18 Thread Peter Maydell
On 18 June 2011 22:45, Blue Swirl blauwir...@gmail.com wrote: Add dummy registers for SuperSPARC MXCC MMU counter breakpoints. Signed-off-by: Blue Swirl blauwir...@gmail.com diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h index 320530e..b5d5291 100644 --- a/target-sparc/cpu.h +++

Re: [Qemu-devel] [PATCH] Sparc32: dummy implementation of MXCC MMU breakpoint registers

2011-06-18 Thread Robert Reif
Blue Swirl wrote: Add dummy registers for SuperSPARC MXCC MMU counter breakpoints. Signed-off-by: Blue Swirlblauwir...@gmail.com --- target-sparc/cpu.h |1 + target-sparc/op_helper.c | 26 -- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git

[Qemu-devel] Bonjour cher Ami

2011-06-18 Thread maurice . chabert
Bonjour Comment vous aller j espère que vous aller bien A Votre Honneur, Je sais que ce message t'apparaîtra comme une surprise puisse qu'on ne ce connais pas mais la grâce de Dieu m'a dirigé vers toi et je voudrais que tu lis attentivement et sois bénis au nom de Jésus. Je suis Monsieur