Re: [Qemu-devel] [PATCH v3] slirp: Handle whole 127.0.0.0/8 network as local addresses.

2012-07-14 Thread Jan Kiszka
On 2012-07-13 22:54, Anders Waldenborg wrote: Changes so translation of remote address to the host's ip address in the virtual network happens for all addresses in the 127.0.0.0/8 network, not just 127.0.0.1. This fixes so that hostfwd bound to addresses such as 127.0.0.2 works.

Re: [Qemu-devel] [PATCH v3] slirp: Handle whole 127.0.0.0/8 network as local addresses.

2012-07-14 Thread Jan Kiszka
On 2012-07-14 10:00, Jan Kiszka wrote: On 2012-07-13 22:54, Anders Waldenborg wrote: Changes so translation of remote address to the host's ip address in the virtual network happens for all addresses in the 127.0.0.0/8 network, not just 127.0.0.1. This fixes so that hostfwd bound to

Re: [Qemu-devel] [PATCH 2/6] s390: sclp base support

2012-07-14 Thread Blue Swirl
On Fri, Jul 13, 2012 at 4:44 PM, Christian Borntraeger borntrae...@de.ibm.com wrote: Thanks fpr the review, On 13/07/12 17:08, Blue Swirl wrote: + * Copyright IBM, Corp. 2007, 2012 2007, really? Well, yes and no. The first userspace for kvm on s390 was kuli and some of that code was

Re: [Qemu-devel] [RFC PATCH v2 00/21] ACPI memory hotplug

2012-07-14 Thread Blue Swirl
On Fri, Jul 13, 2012 at 5:49 PM, Vasilis Liaskovitis vasilis.liaskovi...@profitbricks.com wrote: On Thu, Jul 12, 2012 at 08:04:56PM +, Blue Swirl wrote: On Wed, Jul 11, 2012 at 10:31 AM, Vasilis Liaskovitis vasilis.liaskovi...@profitbricks.com wrote: This is v2 of the ACPI memory hotplug

Re: [Qemu-devel] [QEMU PATCH 2/7] hw/apic.c: rename bit functions to not conflict with bitops.h

2012-07-14 Thread Blue Swirl
On Fri, Jul 13, 2012 at 6:07 PM, Eduardo Habkost ehabk...@redhat.com wrote: On Thu, Jul 12, 2012 at 07:24:35PM +, Blue Swirl wrote: On Tue, Jul 10, 2012 at 8:22 PM, Eduardo Habkost ehabk...@redhat.com wrote: Signed-off-by: Eduardo Habkost ehabk...@redhat.com Maybe the bitops functions

[Qemu-devel] [Bug 1024248] Re: qemu -M isapc displays blank screen

2012-07-14 Thread Michael Tokarev
$ qemu-system-x86_64 -M isapc -chardev file,path=/dev/fd/1,id=seabios -device isa-debugcon,iobase=0x402,chardev=seabios Start bios (version 1.7.0-20120603_194846-gandalf) Unable to unlock ram - bridge not found Ram Size=0x (0x high) WARNING - Unable to allocate resource

Re: [Qemu-devel] [QEMU RFC PATCH 6/7] i386: topology APIC ID utility functions

2012-07-14 Thread Blue Swirl
On Fri, Jul 13, 2012 at 6:51 PM, Eduardo Habkost ehabk...@redhat.com wrote: On Thu, Jul 12, 2012 at 07:37:26PM +, Blue Swirl wrote: On Tue, Jul 10, 2012 at 8:22 PM, Eduardo Habkost ehabk...@redhat.com wrote: [...] +#ifndef __QEMU_X86_TOPOLOGY_H__ +#define __QEMU_X86_TOPOLOGY_H__

[Qemu-devel] [RFC][PATCH v3 0/3] tcg: enhance code generation quality for qemu_ld/st IRs

2012-07-14 Thread Yeongkyoon Lee
Hi, all. Here is the 3rd version of the series optimizing TCG qemu_ld/st code generation. v3: - Support CONFIG_TCG_PASS_AREG0 (expected to get more performance enhancement than others) - Remove the configure option --enable-ldst-optimization - Make the optimization as default on i386

[Qemu-devel] [RFC][PATCH v3 2/3] tcg: Add declarations and templates of extended MMU helpers

2012-07-14 Thread Yeongkyoon Lee
Add declarations and templates of extended MMU helpers. An extended helper takes an additional argument of the host address accessing a guest memory which differs from the address of the call site to the helper because helper call sites locate at the end of a generated code block. ---

[Qemu-devel] [RFC][PATCH v3 1/3] configure: Add CONFIG_QEMU_LDST_OPTIMIZATION for TCG qemu_ld/st optimization

2012-07-14 Thread Yeongkyoon Lee
Enable CONFIG_QEMU_LDST_OPTIMIZATION for TCG qemu_ld/st optimization only when a target uses softmmu and a host is i386 or x86_64. --- configure |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 500fe24..5b39c80 100755 --- a/configure +++

[Qemu-devel] [RFC][PATCH v3 3/3] tcg: Optimize qemu_ld/st by generating slow paths at the end of a block

2012-07-14 Thread Yeongkyoon Lee
Add optimized TCG qemu_ld/st generation which locates the code of TLB miss cases at the end of a block after generating the other IRs. Currently, this optimization supports only i386 and x86_64 hosts. --- tcg/i386/tcg-target.c | 475 +++-- tcg/tcg.c

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 03:17 AM, agraham wrote: Hi Guys, I've written a VNC client that implements the VNC QEMU Audio extensions. Using QEMU 0.13 it works very very for remote sound, however after upgrading to QEMU 1.1.0 the audio stream contains only bytes

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Jia Liu
Hi Max On Fri, Jul 13, 2012 at 5:27 PM, Max Filippov jcmvb...@gmail.com wrote: On Fri, Jul 13, 2012 at 8:35 AM, Jia Liu pro...@gmail.com wrote: Add OpenRISC system instructions. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/Makefile.objs |2 +- target-openrisc/cpu.h

Re: [Qemu-devel] [PATCH v9 05/15] target-or32: Add int instruction helpers

2012-07-14 Thread Jia Liu
Hi Max On Fri, Jul 13, 2012 at 5:18 PM, Max Filippov jcmvb...@gmail.com wrote: Hi. On Fri, Jul 13, 2012 at 8:34 AM, Jia Liu pro...@gmail.com wrote: Add OpenRISC int instruction helpers. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/Makefile.objs |2 +-

Re: [Qemu-devel] [PATCH v2 0/4] Define and use TARGET_PRI*PHYS format specifier macros for target_phys_addr_t

2012-07-14 Thread Blue Swirl
On Mon, Jun 25, 2012 at 3:52 PM, Peter Maydell peter.mayd...@linaro.org wrote: This patchset defines a set of macros for use in printf format strings for handling target_phys_addr_t values, as suggested by Andreas Färber (http://lists.gnu.org/archive/html/qemu-devel/2012-01/msg01547.html) We

Re: [Qemu-devel] [PATCH v3] vga: Implement blinking of text cursor

2012-07-14 Thread Blue Swirl
Thanks, applied. On Wed, Jul 4, 2012 at 5:49 PM, Jan Kiszka jan.kis...@siemens.com wrote: Let the text cursor blink at 1.875 Hz, the original VGA cursor frequency. No timer is used, instead we rely on the fact that the display is updated periodically. Signed-off-by: Jan Kiszka

Re: [Qemu-devel] [PATCH v3 00/10] esp: add AMD PCscsi emulation

2012-07-14 Thread Blue Swirl
On Mon, Jul 9, 2012 at 10:02 AM, Hervé Poussineau hpous...@reactos.org wrote: This patchset adds a PCI connection to the 53c9x emulation already present in QEMU. The emulated card is the AMD PCscsi adapter, and has been tested on multiple Microsoft operating systems. Thanks, applied all.

Re: [Qemu-devel] [PATCH] disas: Fix printing of addresses in disassembly

2012-07-14 Thread Blue Swirl
On Mon, Jul 9, 2012 at 10:27 AM, Peter Maydell peter.mayd...@linaro.org wrote: Ping? [patchwork url http://patchwork.ozlabs.org/patch/167132/] Thanks, applied. -- PMM On 25 June 2012 15:55, Peter Maydell peter.mayd...@linaro.org wrote: In our disassembly code, the bfd_vma type is always 64

Re: [Qemu-devel] [PATCH v2] configure: add -Werror to QEMU_CFLAGS early

2012-07-14 Thread Blue Swirl
Thanks, applied. On Mon, Jul 9, 2012 at 12:38 PM, Alexander Graf ag...@suse.de wrote: We want all configure tests pass with -Werror if it is enabled. So we need to update QEMU_CFLAGS early on to make sure we also pass it in to all the compile test jobs. This fixes a warning-became-error bug

Re: [Qemu-devel] [PATCH v3] console: Implementing blinking of cursor

2012-07-14 Thread Blue Swirl
On Tue, Jul 10, 2012 at 8:00 PM, Jan Kiszka jan.kis...@web.de wrote: From: Jan Kiszka jan.kis...@siemens.com Let the text console cursor blink at 2 HZ. Signed-off-by: Jan Kiszka jan.kis...@siemens.com Thanks, applied. --- Changes in v3: - renamed cursor_blink_state to

Re: [Qemu-devel] [PULL 0/1] s390 patch queue 2012-07-10

2012-07-14 Thread Blue Swirl
On Tue, Jul 10, 2012 at 4:23 PM, Alexander Graf ag...@suse.de wrote: Hi Blue / Aurelien, This is my current patch queue for s390. It only includes a single patch that enables for better memory allocation with kvm on newer kernels. Please pull. Thanks, pulled. Alex The following

Re: [Qemu-devel] [PULL 00/15] target-arm queue

2012-07-14 Thread Blue Swirl
On Thu, Jul 12, 2012 at 1:36 PM, Peter Maydell peter.mayd...@linaro.org wrote: Usual target-arm pullreq. This one has a couple of bugfixes for issues in the cp15 rework, and the LPAE patch series (including switching to 64 bit physaddrs for ARM, and a trivial imx_avic patch which is needed as

Re: [Qemu-devel] [PULL 0/5] Trivial patches for July 3 to 13 2012

2012-07-14 Thread Blue Swirl
On Fri, Jul 13, 2012 at 10:37 AM, Stefan Hajnoczi stefa...@linux.vnet.ibm.com wrote: The following changes since commit c0958559b1a589a0d189c45ea1adaa6b345f4256: iov: Fix do_send_recv() for MinGW (also fixes a build breakage) (2012-07-11 08:51:50 -0500) are available in the git repository

[Qemu-devel] [PATCH v3 0/2] bitops patches

2012-07-14 Thread Blue Swirl
Improve bit operations. v2-v3 1/2: drop also now useless casts. 2/2: unify to 'unsigned long' which is used by kernel. Drop bool patch (3). v1-v2 Split from single patch. Blue Swirl (2): bitops: drop volatile qualifier bitops: fix types bitops.h | 52

[Qemu-devel] [PATCH v3 1/2] bitops: drop volatile qualifier

2012-07-14 Thread Blue Swirl
Qualifier 'volatile' is not useful for applications, it's too strict for single threaded code but does not give the real atomicity guarantees needed for multithreaded code. Drop them and now useless casts. Signed-off-by: Blue Swirl blauwir...@gmail.com --- bitops.h | 26

[Qemu-devel] [PATCH v3 2/2] bitops: fix types

2012-07-14 Thread Blue Swirl
bitops.h uses inconsistently 'unsigned long' and 'int' for bit numbers. Unify to 'unsigned long' because it generates better code on x86_64. Adjust asserts accordingly. Signed-off-by: Blue Swirl blauwir...@gmail.com --- bitops.h | 40 +--- 1 files changed,

Re: [Qemu-devel] [PATCH v3 1/2] bitops: drop volatile qualifier

2012-07-14 Thread Peter Maydell
On 14 July 2012 13:34, Blue Swirl blauwir...@gmail.com wrote: Qualifier 'volatile' is not useful for applications, it's too strict for single threaded code but does not give the real atomicity guarantees needed for multithreaded code. Drop them and now useless casts. Signed-off-by: Blue

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/14/2012 11:44 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 03:17 AM, agraham wrote: Hi Guys, I've written a VNC client that implements the VNC QEMU Audio extensions. Using QEMU 0.13 it works very very for remote sound, however after upgrading to QEMU 1.1.0 the

[Qemu-devel] [PATCH v3 0/2] portability patches

2012-07-14 Thread Blue Swirl
I entertained myself by compiling QEMU with -std=c99 -pedantic and fixing some issues found with that. v2-v3 Put :?, %m and asm patches to separate series. v1-v2: Fix copypasta in 1/5 (Anders Schwab) Resent with correct address Blue Swirl (2): Avoid returning void Avoid redefining inline

[Qemu-devel] [PATCH v3 1/2] Avoid returning void

2012-07-14 Thread Blue Swirl
It's silly and non-conforming to standards to return void, don't do it. Signed-off-by: Blue Swirl blauwir...@gmail.com --- block.c|2 +- dma.h |6 +++--- hw/bt-l2cap.c | 11 +++ hw/eepro100.c | 15 +++

[Qemu-devel] [PATCH v3 2/2] Avoid redefining inline

2012-07-14 Thread Blue Swirl
System headers (e.g. gutils.h) may define 'inline', #undefine it before #defining. Signed-off-by: Blue Swirl blauwir...@gmail.com --- osdep.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/osdep.h b/osdep.h index 3ea4af0..1e15a4b 100644 --- a/osdep.h +++ b/osdep.h @@

Re: [Qemu-devel] [RFC][PATCH v3 2/3] tcg: Add declarations and templates of extended MMU helpers

2012-07-14 Thread Blue Swirl
On Sat, Jul 14, 2012 at 10:23 AM, Yeongkyoon Lee yeongkyoon@samsung.com wrote: Add declarations and templates of extended MMU helpers. An extended helper takes an additional argument of the host address accessing a guest memory which differs from the address of the call site to the helper

Re: [Qemu-devel] [RFC][PATCH v3 1/3] configure: Add CONFIG_QEMU_LDST_OPTIMIZATION for TCG qemu_ld/st optimization

2012-07-14 Thread Blue Swirl
On Sat, Jul 14, 2012 at 10:23 AM, Yeongkyoon Lee yeongkyoon@samsung.com wrote: Enable CONFIG_QEMU_LDST_OPTIMIZATION for TCG qemu_ld/st optimization only when a target uses softmmu and a host is i386 or x86_64. --- configure |8 1 files changed, 8 insertions(+), 0

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Blue Swirl
On Sat, Jul 14, 2012 at 11:12 AM, Jia Liu pro...@gmail.com wrote: Hi Max On Fri, Jul 13, 2012 at 5:27 PM, Max Filippov jcmvb...@gmail.com wrote: On Fri, Jul 13, 2012 at 8:35 AM, Jia Liu pro...@gmail.com wrote: Add OpenRISC system instructions. Signed-off-by: Jia Liu pro...@gmail.com ---

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Jia Liu
Hi Blue, On Sat, Jul 14, 2012 at 9:19 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 14, 2012 at 11:12 AM, Jia Liu pro...@gmail.com wrote: Hi Max On Fri, Jul 13, 2012 at 5:27 PM, Max Filippov jcmvb...@gmail.com wrote: On Fri, Jul 13, 2012 at 8:35 AM, Jia Liu pro...@gmail.com wrote:

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Max Filippov
On Sat, Jul 14, 2012 at 5:39 PM, Jia Liu pro...@gmail.com wrote: Hi Blue, On Sat, Jul 14, 2012 at 9:19 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 14, 2012 at 11:12 AM, Jia Liu pro...@gmail.com wrote: Hi Max On Fri, Jul 13, 2012 at 5:27 PM, Max Filippov jcmvb...@gmail.com wrote:

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Jia Liu
Hi Max On Sat, Jul 14, 2012 at 9:49 PM, Max Filippov jcmvb...@gmail.com wrote: I don't think so, please check for example target-ppc/translate.c:4192 on how supervisor only mfsr is handled there. Thank you for comment, Blue. is this code OK? Shouldn't there also be an exception in

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Blue Swirl
On Sat, Jul 14, 2012 at 2:08 PM, Jia Liu pro...@gmail.com wrote: Hi Max On Sat, Jul 14, 2012 at 9:49 PM, Max Filippov jcmvb...@gmail.com wrote: I don't think so, please check for example target-ppc/translate.c:4192 on how supervisor only mfsr is handled there. Thank you for comment, Blue.

[Qemu-devel] Qemu Live Migration: File Descriptor

2012-07-14 Thread siddharth srivastava
Hi I have been exploring various live migration ways that qemu supports. In the Qemu Migration documentation at: [1], it is only mentioned how to invoke tcp and exec migration schemes. But there is no mention of unix and fd migration schemes. In the code I see that the argument for tcp, fd,unix

[Qemu-devel] [PATCH 0/3] Fix ping issues in linux-user guest

2012-07-14 Thread Jing Huang
The following changes since commit c0958559b1a589a0d189c45ea1adaa6b345f4256: iov: Fix do_send_recv() for MinGW (also fixes a build breakage) (Wed Jul 11 07:09:05 2012 +0200) These patches fix ping issues in linux-user guest: - do_sebdrecv() could not pass sockaddr to target after executing

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 03:17 AM, agraham wrote: Hi Guys, I've written a VNC client that implements the VNC QEMU Audio extensions. Using QEMU 0.13 it works very very for remote sound,

[Qemu-devel] [PATCH 1/3] linux-user: pass sockaddr from host to target

2012-07-14 Thread Jing Huang
This patch pass sockaddr from host to target. Signed-off-by: Jing Huang jing.huang@gmail.com --- linux-user/syscall.c | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 539af3f..fa251df 100644 ---

[Qemu-devel] [PATCH 2/3] linux-user: make do_setsockopt() support SOL_RAW ICMP_FILTER socket option

2012-07-14 Thread Jing Huang
This patch makes do_setsockopt() support SOL_RAW ICMP_FILTER socket option Signed-off-by: Jing Huang jing.huang@gmail.com --- linux-user/syscall.c | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index

[Qemu-devel] [PATCH 3/3] linux-user: exclude SO_TIMESTAMP cmsg_type from unsuppoted ancillary data

2012-07-14 Thread Jing Huang
This patch excludes SO_TIMESTAMP cmsg_type from unsuppoted ancillary data Signed-off-by: Jing Huang jing.huang@gmail.com --- linux-user/syscall.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index ed93af0..850e6e0

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: [..snip.]] I've just rebuilt QEMU 1.0 (and all of its dependencies) and it has the same problem (zero bytes), so some

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/14/2012 06:20 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: [..snip.]] I've just rebuilt QEMU 1.0 (and all of its dependencies) and it has the same problem (zero

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 06:20 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: [..snip.]] I've just rebuilt QEMU 1.0 (and all

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/14/2012 09:09 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 06:20 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: [..snip.]] I've just rebuilt

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 09:09 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 06:20 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc wrote: On

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/14/2012 11:23 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 09:09 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 06:20 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham wrote: On 07/14/2012 11:44 AM, malc

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/14/2012 11:42 PM, agraham wrote: On 07/14/2012 11:23 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 09:09 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 06:20 PM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: On 07/14/2012 01:55 PM, agraham

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sat, 14 Jul 2012, agraham wrote: [..snip..] /usr/bin/qemu-kvm -usb -no-fd-bootchk -M pc -enable-kvm -m 128 -drive file=/Storage/Windows/Images/Clone_of_Windows-XP-x32,if=none,media=disk,cache=unsafe,aio=native,snapshot,format=qcow2,id=virtio-blk-pci0 -device

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread agraham
On 07/15/2012 12:01 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: [..snip..] /usr/bin/qemu-kvm -usb -no-fd-bootchk -M pc -enable-kvm -m 128 -drive file=/Storage/Windows/Images/Clone_of_Windows-XP-x32,if=none,media=disk,cache=unsafe,aio=native,snapshot,format=qcow2,id=virtio-blk-pci0

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sun, 15 Jul 2012, agraham wrote: On 07/15/2012 12:01 AM, malc wrote: On Sat, 14 Jul 2012, agraham wrote: [..snip..] /usr/bin/qemu-kvm -usb -no-fd-bootchk -M pc -enable-kvm -m 128 -drive

Re: [Qemu-devel] QEMU VNC Audio - All audio data null

2012-07-14 Thread malc
On Sat, 14 Jul 2012, agraham wrote: [..snip..] Just to confirm, I'm connecting via a TCP INET socket (i.e. server and client are different machines), your acap.ml script also allows unix: sockets, which one are you using? The default, TCP. -- mailto:av1...@comtv.ru

Re: [Qemu-devel] [PATCH v9 11/15] target-or32: Add system instructions

2012-07-14 Thread Jia Liu
Hi Blue On Sat, Jul 14, 2012 at 10:42 PM, Blue Swirl blauwir...@gmail.com wrote: On Sat, Jul 14, 2012 at 2:08 PM, Jia Liu pro...@gmail.com wrote: Hi Max On Sat, Jul 14, 2012 at 9:49 PM, Max Filippov jcmvb...@gmail.com wrote: I don't think so, please check for example

Re: [Qemu-devel] [PATCH 3/3] linux-user: exclude SO_TIMESTAMP cmsg_type from unsuppoted ancillary data

2012-07-14 Thread Dunrong Huang
2012/7/15 Jing Huang jing.huang@gmail.com: This patch excludes SO_TIMESTAMP cmsg_type from unsuppoted ancillary data Signed-off-by: Jing Huang jing.huang@gmail.com --- linux-user/syscall.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git