Re: [Qemu-devel] [PATCH] MAINTAINERS: add block driver sub-maintainers

2013-10-23 Thread MORITA Kazutaka
At Mon, 21 Oct 2013 14:26:15 +0100, Stefan Hajnoczi wrote: There are a number of contributors who maintain block drivers (image formats and protocols). They should be listed in the MAINTAINERS file so that get_maintainer.pl lists them. Note that commits are still merged through Kevin or

Re: [Qemu-devel] [PATCH] MAINTAINERS: add block driver sub-maintainers

2013-10-23 Thread Paolo Bonzini
Il 21/10/2013 14:26, Stefan Hajnoczi ha scritto: +iSCSI +M: Ronnie Sahlberg ronniesahlb...@gmail.com +M: Paolo Bonzini pbonz...@redhat.com +S: Supported +F: block/iscsi.c Acked-by: Paolo Bonzini pbonz...@redhat.com Paolo

Re: [Qemu-devel] [PATCH] rdma: rename 'x-rdma' = 'rdma'

2013-10-23 Thread Paolo Bonzini
Il 22/10/2013 21:20, Eric Blake ha scritto: -# @x-rdma-pin-all: Controls whether or not the entire VM memory footprint is +# @rdma-pin-all: Controls whether or not the entire VM memory footprint is # mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage. #

Re: [Qemu-devel] PSCI with mach-virt

2013-10-23 Thread Giridhar Maruthy
Hi Peter, I did compare with kvmtool and found that the below fix boots SMP in mach-virt with qemu. diff --git a/target-arm/kvm.c b/target-arm/kvm.c index b92e00d..28b8e2b 100644 --- a/target-arm/kvm.c +++ b/target-arm/kvm.c @@ -82,6 +82,7 @@ int kvm_arch_init_vcpu(CPUState *cs)

Re: [Qemu-devel] [PATCH] MAINTAINERS: add block driver sub-maintainers

2013-10-23 Thread MORITA Kazutaka
At Wed, 23 Oct 2013 15:19:47 +0900, MORITA Kazutaka wrote: + +Sheepdog +M: MORITA Kazutaka morita.kazut...@lab.ntt.co.jp +S: Supported +F: block/sheepdog.c Acked-by: MORITA Kazutaka morita.kazut...@lab.ntt.co.jp Is it okay to add Liu Yuan tailai...@taobao.com to the sheepdog

Re: [Qemu-devel] [PATCH_v2 9/9] target-openrisc: Correct carry flagcheck of l.addc and l.addic test casess

2013-10-23 Thread Max Filippov
On Tue, Oct 22, 2013 at 8:15 PM, Sebastian Macke sebast...@macke.de wrote: On 22/10/2013 9:01 AM, Max Filippov wrote: On Tue, Oct 22, 2013 at 7:45 PM, Sebastian Macke sebast...@macke.de wrote: Hi Alex, I am using a cross-compiling toolchain. It's the easiest way as I have to compile the

Re: [Qemu-devel] [PATCH] MAINTAINERS: add block driver sub-maintainers

2013-10-23 Thread Liu Yuan
On Wed, Oct 23, 2013 at 03:51:37PM +0900, MORITA Kazutaka wrote: At Wed, 23 Oct 2013 15:19:47 +0900, MORITA Kazutaka wrote: + +Sheepdog +M: MORITA Kazutaka morita.kazut...@lab.ntt.co.jp +S: Supported +F: block/sheepdog.c Acked-by: MORITA Kazutaka

Re: [Qemu-devel] PSCI with mach-virt

2013-10-23 Thread Peter Maydell
On 23 October 2013 07:28, Giridhar Maruthy giridhar.maru...@linaro.org wrote: I did compare with kvmtool and found that the below fix boots SMP in mach-virt with qemu. diff --git a/target-arm/kvm.c b/target-arm/kvm.c index b92e00d..28b8e2b 100644 --- a/target-arm/kvm.c +++

Re: [Qemu-devel] [sheepdog] [PATCH 1/2] sheepdog: explicitly set copies as type uint8_t

2013-10-23 Thread MORITA Kazutaka
At Wed, 16 Oct 2013 15:38:37 +0800, Liu Yuan wrote: 'copies' is actually uint8_t since day one, but request headers and some helper functions parameterize it as uint32_t for unknown reasons and effectively reserve 24 bytes for possible future use. This patch explicitly set the correct

Re: [Qemu-devel] [PATCH 04/16] slirp: Adding IPv6, ICMPv6 Echo and NDP autoconfiguration

2013-10-23 Thread Paolo Bonzini
Il 20/10/2013 15:56, Samuel Thibault ha scritto: +#define rand_a_b(a, b)\ +(rand()%(int)(b-a)+a) +#define NDP_Interval rand_a_b(NDP_MinRtrAdvInterval, NDP_MaxRtrAdvInterval) + +static void ra_timer_handler(void *opaque) +{ +timer_mod(ra_timer, qemu_clock_get_s(QEMU_CLOCK_VIRTUAL) +

Re: [Qemu-devel] [PATCH for-1.7] configure: Explicitly set ARFLAGS so we can build with GNU Make 4.0

2013-10-23 Thread Paolo Bonzini
Il 22/10/2013 09:24, Peter Maydell ha scritto: Ken -- any chance you could test git master? I think it would be more interesting to make sure that 1.7 works with Make 4.0: I don't know if anybody will care enough to backport this patch to 1.6.x. Cc: qemu-sta...@nongnu.org Mike Roth now

Re: [Qemu-devel] [PATCH 6/6] qapi: add doc for QEvent

2013-10-23 Thread Wenchao Xia
Take another think, I think I may use past tense through the doc, but with more carefully meaning, such as: the system has enter powerdown state. If you agree with the tense, I'd like sent the reformed doc in the following, before respin. Indeed, which is why separating the docs from

[Qemu-devel] qemu 1.6.1

2013-10-23 Thread Michael W. Bombardieri
Hi, My newly built qemu/win32 binary (v1.6.1) crashes in qemu-system-i386 and qemu-system-x86_64 when booting from an install CD. C:\Program Files\qemuqemu-system-x86_64 -boot d -vnc 0.0.0.0:20 -cdrom NetBSD-6.1.2-amd64.iso Assertion failed: qemu_in_coroutine(), file

[Qemu-devel] [PATCH v2 0/2] sheepdog: make use of copy_policy

2013-10-23 Thread Liu Yuan
v2: - merge the reserved bits This patch set makes use of copy_policy in struct SheepdogInode in order to support recently introduced erasure coding volume in sheepdog. Thanks Yuan Liu Yuan (2): sheepdog: explicitly set copies as type uint8_t sheepdog: pass copy_policy in the request

[Qemu-devel] [PATCH v2 1/2] sheepdog: explicitly set copies as type uint8_t

2013-10-23 Thread Liu Yuan
'copies' is actually uint8_t since day one, but request headers and some helper functions parameterize it as uint32_t for unknown reasons and effectively reserve 24 bytes for possible future use. This patch explicitly set the correct for copies and reserve the left bytes. This is a preparation

[Qemu-devel] [PATCH v2 2/2] sheepdog: pass copy_policy in the request

2013-10-23 Thread Liu Yuan
Currently copy_policy isn't used. Recent sheepdog supports erasure coding, which make use of copy_policy internally, but require client explicitly passing copy_policy from base inode to newly creately inode for snapshot related operations. If connected sheep daemon doesn't utilize copy_policy,

Re: [Qemu-devel] qemu 1.6.1

2013-10-23 Thread Paolo Bonzini
Il 23/10/2013 08:39, Michael W. Bombardieri ha scritto: Hi, My newly built qemu/win32 binary (v1.6.1) crashes in qemu-system-i386 and qemu-system-x86_64 when booting from an install CD. C:\Program Files\qemuqemu-system-x86_64 -boot d -vnc 0.0.0.0:20 -cdrom NetBSD-6.1.2-amd64.iso

Re: [Qemu-devel] [PATCH 05/10] pci-host: Consistently set cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com Many PCI host bridges consist of a sysbus device and a PCI device. You need both for the thing to work. Arguably, these bridges should be modelled as a single, composite devices instead of pairs of

Re: [Qemu-devel] [PATCH 03/10] cpu: Document why cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com Signed-off-by: Markus Armbruster arm...@redhat.com Reviewed-by: Peter Maydell peter.mayd...@linaro.org -- PMM

Re: [Qemu-devel] [PATCH 04/10] apic: Document why cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com Signed-off-by: Markus Armbruster arm...@redhat.com Reviewed-by: Peter Maydell peter.mayd...@linaro.org -- PMM

Re: [Qemu-devel] [PATCH 06/10] ich9: Document why cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com An ICH9 southbridge contains several PCI devices, some of them with multiple functions. We model each function as a separate qdev. Two of them need some special wiring set up in pc_q35_init() to

Re: [Qemu-devel] [PATCH 08/10] vt82c686: Clean up use of cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com A VT82C686B southbridge has multiple functions. We model each function as a separate qdev. One of them need some special wiring set up in mips_fulong2e_init() to work: the ISA bridge at 05.0. The

Re: [Qemu-devel] [PATCH 09/10] isa: Clean up use of cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:55, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com Drop it when there's no obvious reason why device_add could not work. Else keep and document why. * isa-fdc, port92, i8042, m48t59_isa, mc146818rtc, isa-pit, kvm-pit: drop (from the last two by

Re: [Qemu-devel] [PATCH 01/10] qdev: Replace no_user by cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com In an ideal world, machines can be built by wiring devices together with configuration, not code. Unfortunately, that's not the world we live in right now. We still have quite a few devices that

Re: [Qemu-devel] [PATCH 02/10] sysbus: Set cannot_instantiate_with_device_add_yet

2013-10-23 Thread Peter Maydell
On 17 October 2013 14:54, arm...@redhat.com wrote: From: Markus Armbruster arm...@redhat.com device_add plugs devices into suitable bus. For real buses, that actually connects the device. For sysbus, the connections need to be made separately, and device_add can't do that. The device

Re: [Qemu-devel] [RFC PATCH v1: 11/12] mc: register MC qemu-file functions and expose MC tunable capability

2013-10-23 Thread Isaku Yamahata
Since more integer parameters would come in the future, so how about set_migrate_parameter similar to set_migrate_capability? It sets integer value, while set_migrate_capability sets bool value. thanks, On Mon, Oct 21, 2013 at 01:14:21AM +, mrhi...@linux.vnet.ibm.com wrote: From: Michael

Re: [Qemu-devel] [RFC v3 0/2] use sizes.h macros for power-of-two sizes

2013-10-23 Thread Antony Pavlov
On Tue, 24 Sep 2013 08:32:10 +0400 Antony Pavlov antonynpav...@gmail.com wrote: ping-ping On Fri, 13 Sep 2013 11:33:24 +0400 Antony Pavlov antonynpav...@gmail.com wrote: ping Changes since v2: * commit messages: drop ALL 'Reviewed-by' tags. Drop Aurelien Jarno's tag because the

Re: [Qemu-devel] [PATCH] MAINTAINERS: add block driver sub-maintainers

2013-10-23 Thread Jeff Cody
On Mon, Oct 21, 2013 at 02:26:15PM +0100, Stefan Hajnoczi wrote: There are a number of contributors who maintain block drivers (image formats and protocols). They should be listed in the MAINTAINERS file so that get_maintainer.pl lists them. Note that commits are still merged through Kevin

[Qemu-devel] [PATCH 3/3] Add migration stream analyzation script

2013-10-23 Thread Alexander Graf
This patch adds a python tool to the scripts directory that can read a dumped migration stream which contains the debug_migration device and construct a human readable JSON stream out of it. It's very simple to use: $ qemu-system-x86_64 -device debug_migration (qemu) migrate exec:cat mig

[Qemu-devel] [PATCH 0/3] Migration Debugging Helper Device

2013-10-23 Thread Alexander Graf
This patch set adds support for a simple migration debugging method. It adds a device that exports all metadata required to read a migration stream from an external program as part of the migration stream. The external program then does not need to have any knowledge of device internals of the

[Qemu-devel] [PATCH 1/3] Export savevm handlers outside of savevm.c

2013-10-23 Thread Alexander Graf
We need to be able to access savevm handlers from code that lives outside of savevm.c. Extract its struct definitions and declaration into a separate header file. Signed-off-by: Alexander Graf ag...@suse.de --- include/qemu/savevm.h | 28 savevm.c | 24

[Qemu-devel] [PATCH 2/3] Add migration debug device

2013-10-23 Thread Alexander Graf
This patch adds a pseudo device whose sole purpose is to encapsulate a machine readable layout description of the vmstate stream layout inside of the stream. With this device enabled in the system while a migration is happening, we have to chance to decypher the contents of the stream from an

[Qemu-devel] CfP: Virtualisation and IaaS DevRoom at FOSDEM'14

2013-10-23 Thread Itamar Heim
https://groups.google.com/forum/#!forum/fosdem14-virt-and-iaas-devroom Call for Participation The scope for this devroom is open source, openly-developed projects in the areas of virtualisation and IaaS type clouds, ranging from low level to data center, up to cloud management platforms and

[Qemu-devel] [Bug 1243639] [NEW] qemu-1.5.3 segment fault with -vga qxl

2013-10-23 Thread john zhong
Public bug reported: execute qemu-system-x86_64-enable-kvm -machine accel=kvm:tcg -m 1G -drive file=/dev/sda --full-screen -spice addr=127.0.0.1,port=5900 ,disable-ticketing -vga qxl on shell will get segment fault after a few seconds if I don't connect to it with spicec client

[Qemu-devel] [Bug 1243639] Re: qemu-1.5.3 segment fault with -vga qxl

2013-10-23 Thread john zhong
/usr/local/bin/qemu-system-x86_64 -enable-kvm -machine accel=kvm:tcg -m 1G -drive file=/dev/sda -vga qxl will give same error -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1243639 Title:

[Qemu-devel] [Bug 1243639] Re: qemu-1.5.3 segment fault with -vga qxl

2013-10-23 Thread john zhong
a funny thing: if I change the -drive file=/dev/sda to -drive file=/dev/sdb , it will not run into segment fault. The different between sda sdb is as following: linux is installed on /dev/sda and/dev/sdb is another physical hard driver.

Re: [Qemu-devel] About VM fork in QEMU

2013-10-23 Thread Xinyang Ge
Live cloning is a disaster waiting to happen if not done in a very carefully controlled environment (I could maybe see it useful across two private networks for forensic analysis or running what-if scenarios, but never for provisioning enterprise-quality public-facing servers). Remember, if

Re: [Qemu-devel] [PATCH for-1.7] seccomp: setting -sandbox on by default

2013-10-23 Thread Eduardo Otubo
On 10/22/2013 11:00 AM, Anthony Liguori wrote: On Tue, Oct 22, 2013 at 12:21 PM, Eduardo Otubo ot...@linux.vnet.ibm.com wrote: Inverting the way sandbox handles arguments, making possible to have no argument and still have '-sandbox on' enabled. Signed-off-by: Eduardo Otubo

Re: [Qemu-devel] [PATCH v7] powerpc: add PVR mask support

2013-10-23 Thread Andreas Färber
Am 27.09.2013 09:05, schrieb Alexey Kardashevskiy: IBM POWERPC processors encode PVR as a CPU family in higher 16 bits and a CPU version in lower 16 bits. Since there is no significant change in behavior between versions, there is no point to add every single CPU version in QEMU's CPU list.

Re: [Qemu-devel] [RFC PATCH v2 1/6] hw: arm_gic: Fix gic_set_irq handling

2013-10-23 Thread Christoffer Dall
On Mon, Oct 14, 2013 at 03:24:43PM +0100, Peter Maydell wrote: On 26 September 2013 22:03, Christoffer Dall christoffer.d...@linaro.org wrote: For some reason only edge-triggered or enabled level-triggered interrupts would set the pending state of a raised IRQ. This is not in compliance

[Qemu-devel] [PATCH] arm_gic: Keep track of GICD_CPENDR and GICD_SPENDR

2013-10-23 Thread Christoffer Dall
If software writes to the ISPENDR and sets the pending state of a level-triggered interrupt, the falling edge of the hardware input must not clear the pending state. Conversely, if software writes to the ICPENDR, the pending state of a level-triggered interrupt should only be cleared if the

Re: [Qemu-devel] [RFC PATCH v2 3/6] hw: arm_gic: Keep track of SGI sources

2013-10-23 Thread Christoffer Dall
On Mon, Oct 14, 2013 at 05:33:38PM +0100, Peter Maydell wrote: On 14 October 2013 16:36, Peter Maydell peter.mayd...@linaro.org wrote: [...] Tangentially, I notice that we don't correctly handle the PENDING bit for level triggered interrupts, since we do: /* Clear pending flags for

Re: [Qemu-devel] [PATCH] qcow2: Restore total_sectors value in save_vmstate

2013-10-23 Thread Max Reitz
On 2013-10-21 22:36, Eric Blake wrote: On 10/20/2013 07:28 PM, Max Reitz wrote: Since df2a6f29a5, bdrv_co_do_writev increases the total_sectors value of a growable block devices on writes after the current end. This leads to the virtual disk apparently growing in qcow2_save_vmstate, which in

Re: [Qemu-devel] [PATCH] qcow2: Unset zero_beyond_eof in save_vmstate

2013-10-23 Thread Max Reitz
On 2013-10-21 22:37, Eric Blake wrote: On 10/20/2013 08:52 PM, Max Reitz wrote: Saving the VM state is done using bdrv_pwrite. This function may perform a read-modify-write, which in this case results in data being read from beyond the end of the virtual disk. Since we are actually trying to

[Qemu-devel] [PATCH] qemu-iotests: Test for loading VM state from qcow2

2013-10-23 Thread Max Reitz
Add a test for saving a VM state from a qcow2 image and loading it back (with having restarted qemu in between); this should work without any problems. Signed-off-by: Max Reitz mre...@redhat.com --- Follow-up to (depends on): - qcow2: Restore total_sectors value in save_vmstate - qcow2: Unset

Re: [Qemu-devel] [PATCH] qcow2: Unset zero_beyond_eof in save_vmstate

2013-10-23 Thread Max Reitz
On 2013-10-21 22:37, Eric Blake wrote: On 10/20/2013 08:52 PM, Max Reitz wrote: Saving the VM state is done using bdrv_pwrite. This function may perform a read-modify-write, which in this case results in data being read from beyond the end of the virtual disk. Since we are actually trying to

[Qemu-devel] [PATCH] qcow2: Flush image after creation

2013-10-23 Thread Max Reitz
Opening the qcow2 image with BDRV_O_NO_FLUSH prevents any flushes during the image creation. This means that the image has not yet been flushed to disk when qemu-img create exits. This flush is delayed until the next operation on the image involving opening it without BDRV_O_NO_FLUSH and closing

Re: [Qemu-devel] qemu 1.6.1

2013-10-23 Thread Stefan Weil
Am 23.10.2013 11:00, schrieb Paolo Bonzini: Il 23/10/2013 08:39, Michael W. Bombardieri ha scritto: Hi, My newly built qemu/win32 binary (v1.6.1) crashes in qemu-system-i386 and qemu-system-x86_64 when booting from an install CD. C:\Program Files\qemuqemu-system-x86_64 -boot d -vnc

[Qemu-devel] [PATCH v6 0/5] add initial support for Canon DIGIC SoC

2013-10-23 Thread Antony Pavlov
[PATCH v6 1/5] hw/arm: add very initial support for Canon DIGIC SoC [PATCH v6 2/5] hw/arm/digic: prepare DIGIC-based boards support [PATCH v6 3/5] hw/arm/digic: add timer support [PATCH v6 4/5] hw/arm/digic: add UART support [PATCH v6 5/5] hw/arm/digic: add NOR ROM support Changes since v5: 1.

[Qemu-devel] [PATCH v6 1/5] hw/arm: add very initial support for Canon DIGIC SoC

2013-10-23 Thread Antony Pavlov
DIGIC is Canon Inc.'s name for a family of SoC for digital cameras and camcorders. There is no publicly available specification for DIGIC chips. All information about DIGIC chip internals is based on reverse engineering efforts made by CHDK (http://chdk.wikia.com) and Magic Lantern

[Qemu-devel] [PATCH v6 2/5] hw/arm/digic: prepare DIGIC-based boards support

2013-10-23 Thread Antony Pavlov
Also this patch adds initial support for Canon PowerShot A1100 IS compact camera. Signed-off-by: Antony Pavlov antonynpav...@gmail.com --- hw/arm/Makefile.objs | 1 + hw/arm/digic_boards.c | 88 +++ 2 files changed, 89 insertions(+) create mode

[Qemu-devel] [PATCH v6 5/5] hw/arm/digic: add NOR ROM support

2013-10-23 Thread Antony Pavlov
Signed-off-by: Antony Pavlov antonynpav...@gmail.com --- hw/arm/digic_boards.c | 71 +++ 1 file changed, 71 insertions(+) diff --git a/hw/arm/digic_boards.c b/hw/arm/digic_boards.c index 77cfc81..bf6e015 100644 --- a/hw/arm/digic_boards.c +++

[Qemu-devel] [PATCH v6 3/5] hw/arm/digic: add timer support

2013-10-23 Thread Antony Pavlov
Signed-off-by: Antony Pavlov antonynpav...@gmail.com --- hw/arm/digic.c | 28 ++ hw/timer/Makefile.objs | 1 + hw/timer/digic-timer.c | 140 + hw/timer/digic-timer.h | 36 + include/hw/arm/digic.h | 6 +++ 5 files

[Qemu-devel] [PATCH v6 4/5] hw/arm/digic: add UART support

2013-10-23 Thread Antony Pavlov
Signed-off-by: Antony Pavlov antonynpav...@gmail.com Reviewed-by: Peter Maydell peter.mayd...@linaro.org --- hw/arm/digic.c | 16 hw/char/Makefile.objs | 1 + hw/char/digic-uart.c | 195 + hw/char/digic-uart.h | 45

Re: [Qemu-devel] [PATCH 04/16] slirp: Adding IPv6, ICMPv6 Echo and NDP autoconfiguration

2013-10-23 Thread Samuel Thibault
Paolo Bonzini, le Wed 23 Oct 2013 08:51:21 +0100, a écrit : +void icmp6_init(Slirp *slirp) +{ +srand(time(NULL)); +ra_timer = timer_new_s(QEMU_CLOCK_VIRTUAL, ra_timer_handler, slirp); +timer_mod(ra_timer, qemu_clock_get_s(QEMU_CLOCK_VIRTUAL) + NDP_Interval); +} Should

[Qemu-devel] [Bug 1243639] Re: qemu-1.5.3 segment fault with -vga qxl

2013-10-23 Thread john zhong
sorry to mistake The truth is that t will NOT run into segment fault with /dev/sda but without -vga qxl The qemu the Host linux OS is iinstalled on /dev/sda -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU.

Re: [Qemu-devel] [PATCH 01/18] bsd-user: refresh freebsd system call numbers

2013-10-23 Thread Ed Maste
On 16 October 2013 10:36, Stacey Son s...@freebsd.org wrote: Update FreeBSD system call numbers in freebsd/syscall_nr.h. Signed-off-by: Stacey Son s...@freebsd.org Reviewed-by: Ed Maste ema...@freebsd.org

[Qemu-devel] [Bug 1243639] Re: qemu-1.5.3 segment fault with -vga qxl

2013-10-23 Thread john zhong
It will run into segment fault with /dev/sda but without -vga qxl The qemuthe Host linux OS is iinstalled on /dev/sda -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1243639 Title:

Re: [Qemu-devel] pvpanic plans?

2013-10-23 Thread Hu Tao
Hi All, I know it's been a long time since this thread. But qemu 1.7 is releasing, do you have any consensus on this? Thanks.

[Qemu-devel] About the host page cache inside the qemu

2013-10-23 Thread Yaodong Yang
Hi all, I read the slides An Update Overview of the QEMU Storage Stack, which indicate that if caching mode=none, the host page cache is off and guest disk write cache is on. My question is where the implementation is inside the qemu. How to control the io to a virtual disk image( a raw disk

[Qemu-devel] [PATCH] vnc: Fix qemu crash on vnc client disconnection

2013-10-23 Thread Gonglei (Arei)
Hi, I encount a qemu crash when the vnc client disconnection, and I got the next log: qemu: qemu_mutex_lock: Invalid argument and the backtrace listed: Core was generated by `/mnt/sdd/gonglei/kvm/qemu-unstable/x86_64-softmmu/qemu-system-x86_64 -name suse'. Program terminated with signal 6,

Re: [Qemu-devel] [Qemu-discuss] About the host page cache inside the qemu

2013-10-23 Thread Dunrong Huang
On Thu, Oct 24, 2013 at 11:36 AM, Yaodong Yang yaodong.ya...@icloud.comwrote: Hi all, I read the slides An Update Overview of the QEMU Storage Stack, which indicate that if caching mode=none, the host page cache is off and guest disk write cache is on. My question is where the implementation