[Qemu-devel] spelling typo (runnning) in target-i386/kvm.c

2011-07-03 Thread Vagrant Cascadian
fix spelling typo (runnning) in target-i386/kvm.c Signed-Off-By: Vagrant Cascadian vagr...@freegeek.org diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 10fb2c4..3f5caee 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -1801,7 +1801,7 @@ int kvm_arch_handle_exit(CPUState *env,

[Qemu-devel] buildbot failure in qemu on s390-next_i386_debian_5_0

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

Re: [Qemu-devel] [PATCH 3/3] megasas: LSI Megaraid SAS emulation

2011-07-03 Thread Michael S. Tsirkin
On Fri, Jul 01, 2011 at 11:16:03AM +0200, Alexander Graf wrote: On 01.07.2011, at 09:42, Hannes Reinecke wrote: This patch adds an emulation for the LSI Megaraid SAS 8708EM2 HBA. Signed-off-by: Hannes Reinecke h...@suse.de --- Makefile.objs |1 +

Re: [Qemu-devel] [PATCHv2] Add compat eventfd header

2011-07-03 Thread Michael S. Tsirkin
On Fri, Jul 01, 2011 at 11:05:28PM +0300, Blue Swirl wrote: On Thu, Jun 30, 2011 at 6:57 PM, Michael S. Tsirkin m...@redhat.com wrote: Support build on rhel 5.X where we have syscall for eventfd but not userspace wrapper. (cherry-picked from commit 9e3269181e9bc56feb43bcd4e8ce0b82cd543e65

[Qemu-devel] [PATCH] Fix unassigned memory access handling

2011-07-03 Thread Blue Swirl
cea5f9a28faa528b6b1b117c9ab2d8828f473fef exposed bugs in unassigned memory access handling. Fix them by always passing CPUState to the handlers. Reported-by: Hervé Poussineau hpous...@reactos.org Signed-off-by: Blue Swirl blauwir...@gmail.com --- exec-all.h|2 +- exec.c

Re: [Qemu-devel] SPARC64 support on FreeBSD, has it improved as of yet?

2011-07-03 Thread Super Bisquit
On Fri, Jul 1, 2011 at 4:21 PM, Blue Swirl blauwir...@gmail.com wrote: On Fri, Jul 1, 2011 at 7:03 PM, Super Bisquit superbisq...@gmail.com wrote: On Wed, Jun 29, 2011 at 9:46 PM, Super Bisquit superbisq...@gmail.com wrote: On Wed, Jun 29, 2011 at 1:10 AM, Bob Breuer

Re: [Qemu-devel] SPARC64 support on FreeBSD, has it improved as of yet?

2011-07-03 Thread Blue Swirl
On Sun, Jul 3, 2011 at 1:18 PM, Super Bisquit superbisq...@gmail.com wrote: On Fri, Jul 1, 2011 at 4:21 PM, Blue Swirl blauwir...@gmail.com wrote: On Fri, Jul 1, 2011 at 7:03 PM, Super Bisquit superbisq...@gmail.com wrote: On Wed, Jun 29, 2011 at 9:46 PM, Super Bisquit

Re: [Qemu-devel] [PATCH] tcg: Reload local variables after return from longjmp

2011-07-03 Thread Paolo Bonzini
On 07/02/2011 11:43 AM, Jan Kiszka wrote: static const char *pch; +static char *saved_key; static jmp_buf expr_env; #define MD_TLONG 0 @@ -4254,8 +4255,11 @@ static const mon_cmd_t *monitor_parse_command(Monitor *mon, } typestr++;

Re: [Qemu-devel] [PATCH 3/3] megasas: LSI Megaraid SAS emulation

2011-07-03 Thread Paolo Bonzini
On 07/02/2011 03:50 PM, Hannes Reinecke wrote: (And no, I will not getting into another dog-fight with Paul B. here. Virtio can do without bounce buffers. AHCI can. So I fail to see why SCSI has to rely on bounce buffers.) I agree, but I do see why a SCSI device might prefer to rely on bounce

Re: [Qemu-devel] standalone C program Hello World on qemu-system-mipsel

2011-07-03 Thread Leo Chen.
Hi, Andreas Thanks for your reply. I tried the -bios *.elf: qemu-system-mipsel -M mipssim -nographic -bios bin/test.elf The result is the same with -kernel *.elf: C program can work, but the serial port still not working. And I also tried the normal way: -kernel *.bin

[Qemu-devel] [PATCH v7 00/12] Adding VMDK monolithic flat support

2011-07-03 Thread Fam Zheng
Changes from v6: 01/12: cancel CHECK_CID change, add extents order comment, remove duplicated count 04/12: remove unnecessary checks, call vmdk_free_extents on fail 05/12: cancel comment remove, memset-to-zero buf before reading descriptor 08/12: fix two false return 0 09/12:

[Qemu-devel] [PATCH v7 06/12] VMDK: flush multiple extents

2011-07-03 Thread Fam Zheng
Flush all the file that referenced by the image. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c | 12 +++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/block/vmdk.c b/block/vmdk.c index 32a9e2e..fbc8af5 100644 --- a/block/vmdk.c +++ b/block/vmdk.c @@

[Qemu-devel] [PATCH v7 02/12] VMDK: bugfix, align offset to cluster in get_whole_cluster

2011-07-03 Thread Fam Zheng
In get_whole_cluster, the offset is not aligned to cluster when reading from backing_hd. When the first write to child is not at the cluster boundary, wrong address data from parent is copied to child. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c |8 +--- 1 files changed,

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

2011-07-03 Thread Fam Zheng
Separate vmdk_open by subformats to: * vmdk_open_vmdk3 * vmdk_open_vmdk4 Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c | 178 - 1 files changed, 112 insertions(+), 66 deletions(-) diff --git a/block/vmdk.c b/block/vmdk.c

[Qemu-devel] [PATCH v7 01/12] VMDK: introduce VmdkExtent

2011-07-03 Thread Fam Zheng
Introduced VmdkExtent array into BDRVVmdkState, enable holding multiple image extents for multiple file image support. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c | 348 +- 1 files changed, 246 insertions(+), 102

[Qemu-devel] [PATCH v7 07/12] VMDK: move 'static' cid_update flag to bs field

2011-07-03 Thread Fam Zheng
Cid_update is the flag for updating CID on first write after opening the image. This should be per image open rather than per program life cycle, so change it from static var of vmdk_write to a field in BDRVVmdkState. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c |6 +++--- 1

[Qemu-devel] [PATCH v7 05/12] VMDK: add field BDRVVmdkState.desc_offset

2011-07-03 Thread Fam Zheng
There are several occurrence of magic number 0x200 as the descriptor offset within mono sparse image file. This is not the case for images with separate descriptor file. So a field is added to BDRVVmdkState to hold the correct value. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c |

[Qemu-devel] [PATCH v7 03/12] VMDK: probe for monolithicFlat images

2011-07-03 Thread Fam Zheng
Probe as the same behavior as VMware does. Recognize image as monolithicFlat descriptor file when the file is text and the first effective line (not '#' leaded comment or space line) is either 'version=1' or 'version=2'. No space or upper case charactors accepted. Signed-off-by: Fam Zheng

[Qemu-devel] [PATCH v7 09/12] VMDK: open/read/write for monolithicFlat image

2011-07-03 Thread Fam Zheng
Parse vmdk decriptor file and open mono flat image. Read/write the flat extent. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c | 172 +- 1 files changed, 159 insertions(+), 13 deletions(-) diff --git a/block/vmdk.c

[Qemu-devel] [PATCH v7 08/12] VMDK: change get_cluster_offset return type

2011-07-03 Thread Fam Zheng
The return type of get_cluster_offset was an offset that use 0 to denote 'not allocated', this will be no longer true for flat extents, as we see flat extent file as a single huge cluster whose offset is 0 and length is the whole file length. So now we use int return value, 0 means success and

[Qemu-devel] [PATCH v7 11/12] VMDK: fix coding style

2011-07-03 Thread Fam Zheng
Conform coding style in vmdk.c to pass scripts/checkpatch.pl checks. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c | 79 +++-- 1 files changed, 48 insertions(+), 31 deletions(-) diff --git a/block/vmdk.c b/block/vmdk.c index

[Qemu-devel] [PATCH v7 10/12] VMDK: create different subformats

2011-07-03 Thread Fam Zheng
Add create option 'format', with enums: monolithicSparse monolithicFlat twoGbMaxExtentSparse twoGbMaxExtentFlat Each creates a subformat image file. The default is monolithiSparse. Signed-off-by: Fam Zheng famc...@gmail.com --- block/vmdk.c | 561

[Qemu-devel] [PATCH v7 12/12] block: add bdrv_get_allocated_file_size() operation

2011-07-03 Thread Fam Zheng
qemu-img.c wants to count allocated file size of image. Previously it counts a single bs-file by 'stat' or Window API. As VMDK introduces multiple file support, the operation becomes format specific with platform specific meanwhile. The functions are moved to block/raw-{posix,win32}.c and

[Qemu-devel] [PATCH] esp: cancel current request only if some request is in flight

2011-07-03 Thread Hervé Poussineau
Some device may be selected, but it doesn't mean that a request is pending. This fixes a possible crash of Qemu. Signed-off-by: Hervé Poussineau hpous...@reactos.org --- hw/esp.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/esp.c b/hw/esp.c index 8e95672..aa50800

Re: [Qemu-devel] [PATCH] Fix unassigned memory access handling

2011-07-03 Thread Richard Henderson
On 07/03/2011 02:42 AM, Blue Swirl wrote: } -void QEMU_NORETURN do_unassigned_access(target_phys_addr_t addr, int is_write, -int is_exec, int unused, int size) +void QEMU_NORETURN cpu_unassigned_access(CPUState *env1, +

[Qemu-devel] buildbot failure in qemu on default_x86_64_debian_5_0

2011-07-03 Thread qemu
The Buildbot has detected a new failure on builder default_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/default_x86_64_debian_5_0/builds/144 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build:

[Qemu-devel] Wiki spam

2011-07-03 Thread Sune Marcher
Hi folks, sorry if this is the wrong place to post - couldn't find any other contact information. Just wanted to let you know that multiple pages of the wiki have had spam links added recently, so whoever is in charge might want to give the wiki a good scrubbing :)

[Qemu-devel] buildbot failure in qemu on disable_kvm_x86_64_debian_5_0

2011-07-03 Thread qemu
The Buildbot has detected a new failure on builder disable_kvm_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/disable_kvm_x86_64_debian_5_0/builds/148 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this

Re: [Qemu-devel] buildbot failure in qemu on disable_kvm_x86_64_debian_5_0

2011-07-03 Thread Alexander Graf
On 04.07.2011, at 02:04, q...@buildbot.b1-systems.de wrote: The Buildbot has detected a new failure on builder disable_kvm_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/disable_kvm_x86_64_debian_5_0/builds/148 Buildbot

[Qemu-devel] [Bug 786209] Re: Information leak in IDE core

2011-07-03 Thread Qiao Liyong
hi Nelson : what 's the flag 'DRQ_STAT' mean for HD_STATUS ? -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/786209 Title: Information leak in IDE core Status in QEMU: New Bug

[Qemu-devel] buildbot failure in qemu on trivial-patches_x86_64_debian_5_0

2011-07-03 Thread qemu
The Buildbot has detected a new failure on builder trivial-patches_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/trivial-patches_x86_64_debian_5_0/builds/23 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for

[Qemu-devel] Votre site Web pour 999 DT seulement !

2011-07-03 Thread web agency
PROMOTION SITE WEB Du 21 juin au 8 juillet 2011 Nous proposons aux entreprises/associations une solution Internet clé en main à 999 Dinars. Grande ou petite, votre entreprise/association ne peut plus se passer d’un site internet si elle désire grandir et se faire connaitre du plus grand

Re: [Qemu-devel] buildbot failure in qemu on disable_kvm_x86_64_debian_5_0

2011-07-03 Thread Stefan Hajnoczi
On Mon, Jul 4, 2011 at 12:47 AM, Alexander Graf ag...@suse.de wrote: On 04.07.2011, at 02:04, q...@buildbot.b1-systems.de wrote: The Buildbot has detected a new failure on builder disable_kvm_x86_64_debian_5_0 while building qemu. Full details are available at:

[Qemu-devel] buildbot failure in qemu on xen_x86_64_debian_5_0

2011-07-03 Thread qemu
The Buildbot has detected a new failure on builder xen_x86_64_debian_5_0 while building qemu. Full details are available at: http://buildbot.b1-systems.de/qemu/builders/xen_x86_64_debian_5_0/builds/23 Buildbot URL: http://buildbot.b1-systems.de/qemu/ Buildslave for this Build: b1_qemu_1 Build

Re: [Qemu-devel] Wiki spam

2011-07-03 Thread Stefan Hajnoczi
On Mon, Jul 4, 2011 at 12:09 AM, Sune Marcher s...@flork.dk wrote: sorry if this is the wrong place to post - couldn't find any other contact information. Just wanted to let you know that multiple pages of the wiki have had spam links added recently, so whoever is in charge might want to give

Re: [Qemu-devel] buildbot failure in qemu on disable_kvm_x86_64_debian_5_0

2011-07-03 Thread Daniel Gollub
On Monday, July 04, 2011 06:23:41 am Stefan Hajnoczi wrote: BUILD FAILED: failed compile In file included from /usr/include/png.h:438, from ui/vnc-enc-tight.c:40: /usr/include/pngconf.h:326: error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token

Re: [Qemu-devel] buildbot failure in qemu on disable_kvm_x86_64_debian_5_0

2011-07-03 Thread Stefan Weil
Am 04.07.2011 06:23, schrieb Stefan Hajnoczi: On Mon, Jul 4, 2011 at 12:47 AM, Alexander Graf ag...@suse.de wrote: On 04.07.2011, at 02:04, q...@buildbot.b1-systems.de wrote: The Buildbot has detected a new failure on builder disable_kvm_x86_64_debian_5_0 while building qemu. Full details