[Qemu-devel] [Bug 921208] Re: win7/x64 installer hangs on startup with 0x0000005d.

2012-02-26 Thread Paweł Sikora
the westmere cpudef with level 2,9,10,11 doesn't work for win7/x64. -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/921208 Title: win7/x64 installer hangs on startup with 0x005d. Status in

Re: [Qemu-devel] [PATCH] qom: Make object_unref() free the object's memory when refcount goes to 0.

2012-02-26 Thread Alexander Barabash
On 02/24/2012 05:11 PM, Anthony Liguori wrote: On 02/23/2012 10:21 AM, Alexander Barabash wrote: On 02/22/2012 09:12 PM, Anthony Liguori wrote: On 02/22/2012 12:00 PM, alexander_barab...@mentor.com wrote: From: Alexander Barabashalexander_barab...@mentor.com Why do you want to have a delete

Re: [Qemu-devel] [PATCH 4/8] Add universal DMA helper functions

2012-02-26 Thread Michael S. Tsirkin
On Fri, Feb 24, 2012 at 02:27:39PM +1100, David Gibson wrote: Not that long ago, every device implementation using DMA directly accessed guest memory using cpu_physical_memory_*(). This meant that adding support for a guest visible IOMMU would require changing every one of these devices to go

[Qemu-devel] [PATCH] libcacard: Spelling and grammar fixes in documentation

2012-02-26 Thread Stefan Weil
* it's - its * it's - it is (that's no fix, but makes future checks easier) * this functions - this function * replacable - replaceable * reader's - readers * logins into - logs into Signed-off-by: Stefan Weil s...@weilnetz.de --- docs/libcacard.txt | 22 +++--- 1 files

[Qemu-devel] [PATCH] Spelling fixes in comments (it's - its)

2012-02-26 Thread Stefan Weil
* it's - its (fixed for all files) * dont - don't (only fixed in a line which was touched by the previous fix) Signed-off-by: Stefan Weil s...@weilnetz.de --- configure |2 +- hw/exynos4210_mct.c |2 +- hw/usb-ccid.c |2 +- include/qemu/object.h |4

Re: [Qemu-devel] [PATCH] libcacard: Spelling and grammar fixes in documentation

2012-02-26 Thread Alon Levy
On Sun, Feb 26, 2012 at 02:30:21PM +0100, Stefan Weil wrote: Ack. * it's - its * it's - it is (that's no fix, but makes future checks easier) * this functions - this function * replacable - replaceable * reader's - readers * logins into - logs into Signed-off-by: Stefan Weil

[Qemu-devel] [PATCH] Fix spelling in comments (iff - if)

2012-02-26 Thread Stefan Weil
Signed-off-by: Stefan Weil s...@weilnetz.de --- a.out.h|2 +- arm-dis.c | 22 +++--- block.c|2 +- block/qcow2-refcount.c |4 ++-- hw/alpha_typhoon.c |2 +- hw/hid.h |2 +- hw/pcnet.c

Re: [Qemu-devel] [PATCH v2] net: add the support for -netdev socket, listen

2012-02-26 Thread Stefan Hajnoczi
On Sat, Feb 18, 2012 at 9:19 AM, zwu.ker...@gmail.com wrote: From: Zhi Yong Wu wu...@linux.vnet.ibm.com The -net socket,listen option does not work with the newer -netdev syntax: http://lists.gnu.org/archive/html/qemu-devel/2011-11/msg01508.html This patch makes it work now.

[Qemu-devel] [PATCH] qed: replace vm_clock with rt_clock for qemu-tool compatibility

2012-02-26 Thread Stefan Hajnoczi
The QED dirty bit timer marks the file clean after allocating writes have drained. This is cheaper than clearing/setting the dirty bit on each allocating write because the timer introduces a grace period which can be extended if more allocating writes arrive. The vm_clock was used in an attempt

Re: [Qemu-devel] [PATCH 1/2] qemu-img: fix segment fault when the image format is qed

2012-02-26 Thread Stefan Hajnoczi
On Sun, Feb 19, 2012 at 2:24 PM, zwu.ker...@gmail.com wrote: From: Zhi Yong Wu wu...@linux.vnet.ibm.com [root@f15 qemu]# qemu-img info /home/zwu/work/misc/rh6.img image: /home/zwu/work/misc/rh6.img file format: qed virtual size: 4.0G (4294967296 bytes) disk size: 1.2G cluster_size: 65536

[Qemu-devel] [PATCH 1/6] usb-redir: Fix printing of device version

2012-02-26 Thread Hans de Goede
The device version is in bcd format, which requires some special handling to print. Signed-off-by: Hans de Goede hdego...@redhat.com --- usb-redir.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/usb-redir.c b/usb-redir.c index 85f40d6..9b804e9 100644 ---

[Qemu-devel] [PATCH 2/6] usb-redir: Always clear device state on filter reject

2012-02-26 Thread Hans de Goede
Always call usbredir_device_disconnect() when usbredir_check_filter() fails to clean up all the device state (ie received endpoint info). Signed-off-by: Hans de Goede hdego...@redhat.com --- usb-redir.c | 11 +++ 1 files changed, 7 insertions(+), 4 deletions(-) diff --git

[Qemu-devel] [PATCH 5/6] usb-redir: Return USB_RET_NAK when we've no data for an interrupt endpoint

2012-02-26 Thread Hans de Goede
We should return USB_RET_NAK, rather then a 0 sized packet, when we've no data for an interrupt IN endpoint. Signed-off-by: Hans de Goede hdego...@redhat.com --- usb-redir.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/usb-redir.c b/usb-redir.c index

[Qemu-devel] [PATCH 4/6] usb-redir: Limit return values returned by iso packets

2012-02-26 Thread Hans de Goede
The usbredir protocol uses a status of usb_redir_stall to indicate that an iso data stream has stopped (ie because the urbs failed on resubmit), but iso packets should never return a result of USB_RET_STALL, since iso endpoints cannot stall. So instead simply always return USB_RET_NAK on iso

[Qemu-devel] [PATCH 3/6] usb-redir: Let the usb-host know about our device filtering

2012-02-26 Thread Hans de Goede
libusbredirparser-0.3.4 adds 2 new packets which allows us to notify the usb-host: -about the usb device filter we have (if any), so that it knows not the even try to redirect certain devices -when we reject a device based on filtering (in case it tries anyways) Signed-off-by: Hans de Goede

[Qemu-devel] [PATCH 6/6] usb-ehci: Handle ISO packets failing with an error other then NAK

2012-02-26 Thread Hans de Goede
Before this patch the ehci code was not checking for any other errors other then USB_RET_NAK. This causes 2 problems: 1) Other errors are not reported to the guest. 2) When transactions with the ITD_XACT_IOC bit set completing with another error would not result in USBSTS_INT getting set. I

[Qemu-devel] [PATCH 2/4] libcacard: link with glib for g_strndup

2012-02-26 Thread Alon Levy
Without it the produced library for make libcacard.la has an unresolved symbol. Signed-off-by: Alon Levy al...@redhat.com --- configure |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9535f66..88c5fd9 100755 --- a/configure +++ b/configure

[Qemu-devel] [PATCH 1/4] usb-desc: fix user trigerrable segfaults (!config)

2012-02-26 Thread Alon Levy
Check for dev-config being NULL in two places: USB_REQ_GET_CONFIGURATION and USB_REQ_GET_STATUS. The behavior of USB_REQ_GET_STATUS is unspecified in the Default state, that corresponds to dev-config being NULL (it defaults to NULL and is reset whenever a SET_CONFIGURATION with value 0, or

[Qemu-devel] [PATCH 3/4] usb-ccid: advertise SELF_POWERED

2012-02-26 Thread Alon Levy
Before commit ed5a83ddd8c1d8ec7b1015315530cf29949e7c48 each device provided it's own response to USB_REQ_GET_STATUS, but after it that response was based on bmAttributes, which was errounously set for usb-ccid as 0xa0 and not 0xe0. Signed-off-by: Alon Levy al...@redhat.com --- hw/usb-ccid.c |

Re: [Qemu-devel] [PATCH 1/4] usb-desc: fix user trigerrable segfaults (!config)

2012-02-26 Thread Alon Levy
On Sun, Feb 26, 2012 at 05:09:21PM +0100, Alon Levy wrote: Check for dev-config being NULL in two places: USB_REQ_GET_CONFIGURATION and USB_REQ_GET_STATUS. The behavior of USB_REQ_GET_STATUS is unspecified in the Default state, that corresponds to dev-config being NULL (it defaults to NULL

[Qemu-devel] [PATCH 4/4] libcacard: fix reported ATR length

2012-02-26 Thread Alon Levy
Signed-off-by: Alon Levy al...@redhat.com --- libcacard/vcardt.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcacard/vcardt.h b/libcacard/vcardt.h index 538bdde..d4d8e2e 100644 --- a/libcacard/vcardt.h +++ b/libcacard/vcardt.h @@ -26,8 +26,8 @@ typedef struct

Re: [Qemu-devel] [PATCH] Fix spelling in comments (iff - if)

2012-02-26 Thread Anthony Liguori
On 02/26/2012 07:39 AM, Stefan Weil wrote: Signed-off-by: Stefan Weils...@weilnetz.de --- a.out.h|2 +- arm-dis.c | 22 +++--- block.c|2 +- block/qcow2-refcount.c |4 ++-- hw/alpha_typhoon.c |2 +-

Re: [Qemu-devel] qemu.org wiki account

2012-02-26 Thread Stefan Hajnoczi
On Sat, Feb 25, 2012 at 2:41 PM, Hans de Goede hdego...@redhat.com wrote: I wanted to add a summer of code idea to: http://wiki.qemu.org/Google_Summer_of_Code_2012 But I cannot find an obvious way to create an account. So did I miss the obvious way? Or do I need someone to do it for me? I

Re: [Qemu-devel] [PATCH] Spelling fixes in comments (it's - its)

2012-02-26 Thread Andreas Färber
Am 26.02.2012 14:35, schrieb Stefan Weil: * it's - its (fixed for all files) * dont - don't (only fixed in a line which was touched by the previous fix) Signed-off-by: Stefan Weil s...@weilnetz.de Reviewed-by: Andreas Färber afaer...@suse.de Except for one omission: --- configure

Re: [Qemu-devel] [PULL 00/12] target-xtensa queue

2012-02-26 Thread Max Filippov
Hi. This is a pull request for my current target-xtensa queue. Changes in the queue are: - 'info tlb' monitor command; - debug option implementation; - a few minor fixes. ping? Debug option series has been posted to the list as an RFC, there were no changes in it since then. Please

[Qemu-devel] [PULL] VirtFS update

2012-02-26 Thread Aneesh Kumar K.V
Hi Anthony, Please pull the below VirtFS update -aneesh The following changes since commit 235fe3bfd46b1104575b540d0bc3fdf584030b99: qom: add test tools (2012-02-22 12:18:26 -0600) are available in the git repository at: git://github.com/kvaneesh/QEMU.git for-upstream for you to fetch

[Qemu-devel] [PATCH 2/2] hw/9pfs: Endian fixes for virtfs

2012-02-26 Thread Aneesh Kumar K.V
From: Benjamin Herrenschmidt b...@kernel.crashing.org This patch fixes several endian bugs in virtfs. Cc: Aneesh Kumar K.V aneesh.ku...@linux.vnet.ibm.com Signed-off-by: Benjamin Herrenschmidt b...@kernel.crashing.org Signed-off-by: David Gibson da...@gibson.dropbear.id.au Signed-off-by: Aneesh

[Qemu-devel] [PATCH 1/2] ./configure: add option for disabling VirtFS

2012-02-26 Thread Aneesh Kumar K.V
From: Meador Inge mead...@codesourcery.com Signed-off-by: Meador Inge mead...@codesourcery.com Signed-off-by: Aneesh Kumar K.V aneesh.ku...@linux.vnet.ibm.com --- Makefile |2 ++ configure | 25 +++-- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git

[Qemu-devel] [PATCH v2] Spelling fixes in comments (it's - its)

2012-02-26 Thread Stefan Weil
* it's - its (fixed for all files) * dont - don't (only fixed in a line which was touched by the previous fix) * distrub - disturb (fixed in the same line) Reviewed-by: Andreas Färber afaer...@suse.de Signed-off-by: Stefan Weil s...@weilnetz.de --- This 2nd version of the patch added the fix for

Re: [Qemu-devel] [PATCH] libcacard: Spelling and grammar fixes in documentation

2012-02-26 Thread Peter Maydell
On 26 February 2012 13:30, Stefan Weil s...@weilnetz.de wrote: @@ -217,10 +217,10 @@ the card using the following functions:          VCardStatus vcard_add_applet(VCard *card, VCardApplet *applet);   Add an applet onto the list of applets attached to the card. Once an applet -  has been

Re: [Qemu-devel] [PATCH] libcacard: Spelling and grammar fixes in documentation

2012-02-26 Thread Stefan Weil
Am 26.02.2012 19:18, schrieb Peter Maydell: On 26 February 2012 13:30, Stefan Weils...@weilnetz.de wrote: @@ -217,10 +217,10 @@ the card using the following functions: VCardStatus vcard_add_applet(VCard *card, VCardApplet *applet); Add an applet onto the list of applets attached

Re: [Qemu-devel] [PATCH] Fix spelling in comments (iff - if)

2012-02-26 Thread Stefan Weil
Am 26.02.2012 17:39, schrieb Anthony Liguori: On 02/26/2012 07:39 AM, Stefan Weil wrote: Signed-off-by: Stefan Weils...@weilnetz.de --- a.out.h|2 +- arm-dis.c | 22 +++--- block.c|2 +- block/qcow2-refcount.c |4

[Qemu-devel] [PATCH v2] libcacard: Spelling and grammar fixes in documentation

2012-02-26 Thread Stefan Weil
* it's - its * it's - it is (that's no fix, but makes future checks easier) * this functions - this function * replacable - replaceable * reader's - readers * logins into - logs into v2: Also replace 'aid' by 'AID' (thanks to Peter Maydell for this hint). Signed-off-by: Stefan Weil

Re: [Qemu-devel] [PATCH] Fix spelling in comments (iff - if)

2012-02-26 Thread Peter Maydell
On 26 February 2012 18:58, Stefan Weil s...@weilnetz.de wrote: Many authors regard iff as unsuitable in formal writing (citation from Wikipedia).Personally, I'd also prefer to see 'if and only if' in full length or in symbolic notation (==) when this is the intention, not an abbreviation like

[Qemu-devel] [PATCH v2 0/2] Group Live Snapshots

2012-02-26 Thread Jeff Cody
This patchset adds the ability to take a snapshot of a group of devices, rather than each device individually. Upon failure of any snapshot, all snapshots taken by the command will be abandoned, and the appropriate failure code returned. This differs from v1 in that: * The QAPI input

[Qemu-devel] [PATCH v2 1/2] qapi: Introduce blockdev-group-snapshot-sync command

2012-02-26 Thread Jeff Cody
This is a QAPI/QMP only command to take a snapshot of a group of devices. This is similar to the blockdev-snapshot-sync command, except blockdev-group-snapshot-sync accepts a list devices, filenames, and formats. It is attempted to keep the snapshot of the group atomic; if the creation or open of

[Qemu-devel] [PATCH v2 2/2] QMP: Add qmp command for blockdev-group-snapshot-sync

2012-02-26 Thread Jeff Cody
This adds the QMP command for blockdev-group-snapshot-sync. It takes an array in as the input, for the argument devlist. The array consists of the following elements: + device:device to snapshot. e.g. ide-hd0, virtio0 + snapshot-file: path file for the snapshot image. e.g.

Re: [Qemu-devel] [PATCH] Fix spelling in comments (iff - if)

2012-02-26 Thread Anthony Liguori
On 02/26/2012 12:58 PM, Stefan Weil wrote: Am 26.02.2012 17:39, schrieb Anthony Liguori: On 02/26/2012 07:39 AM, Stefan Weil wrote: Signed-off-by: Stefan Weils...@weilnetz.de --- a.out.h | 2 +- arm-dis.c | 22 +++--- block.c | 2 +- block/qcow2-refcount.c | 4 ++--

Re: [Qemu-devel] [PATCH 4/8] Add universal DMA helper functions

2012-02-26 Thread Eduard - Gabriel Munteanu
On Sun, Feb 26, 2012 at 12:04:49PM +0200, Michael S. Tsirkin wrote: On Fri, Feb 24, 2012 at 02:27:39PM +1100, David Gibson wrote: Not that long ago, every device implementation using DMA directly accessed guest memory using cpu_physical_memory_*(). This meant that adding support for a

Re: [Qemu-devel] [PATCH 4/8] Add universal DMA helper functions

2012-02-26 Thread Eduard - Gabriel Munteanu
On Fri, Feb 24, 2012 at 02:27:39PM +1100, David Gibson wrote: Not that long ago, every device implementation using DMA directly accessed guest memory using cpu_physical_memory_*(). This meant that adding support for a guest visible IOMMU would require changing every one of these devices to go

Re: [Qemu-devel] [offtopic] Sparc Softmmu

2012-02-26 Thread Blue Swirl
On Thu, Feb 23, 2012 at 23:47, P. Wilhelm bearcat.pi...@gmail.com wrote: We use the old Solaris/Sparc in a medical device we produce where I work. Since we can't get new Sparc hardware any longer (many countries no longer accept refurbished devices - so we can't sell this product to them when

Re: [Qemu-devel] [PATCH 6/6] kvm: Fix dirty tracking with large kernel page size

2012-02-26 Thread Blue Swirl
On Fri, Feb 24, 2012 at 00:23, David Gibson da...@gibson.dropbear.id.au wrote: From: Benjamin Herrenschmidt b...@kernel.crashing.org If the kernel page size is larger than TARGET_PAGE_SIZE, which happens for example on ppc64 with kernels compiled for 64K pages, the dirty tracking doesn't

Re: [Qemu-devel] [PATCH 8/8] Make dma_addr_t 64 bit always

2012-02-26 Thread Blue Swirl
On Fri, Feb 24, 2012 at 04:57, David Gibson da...@gibson.dropbear.id.au wrote: On Fri, Feb 24, 2012 at 02:27:43PM +1100, David Gibson wrote: Oops, ignore this one folks.  As is probably obvious, this was a testing patch not meant to go into the main series. Actually I'm not sure what would be

[Qemu-devel] [PATCH] hw/omap_i2c: Convert to qdev

2012-02-26 Thread Peter Maydell
From: Juha Riihimäki juha.riihim...@nokia.com Convert the omap_i2c device to qdev. Signed-off-by: Juha Riihimäki juha.riihim...@nokia.com [Riku Voipio: Fixes and restructuring patchset] Signed-off-by: Riku Voipio riku.voi...@iki.fi [Peter Maydell: More fixes and cleanups for upstream submission]

[Qemu-devel] [PATCH 0/8] Add GTK UI to enable basic accessibility (v2)

2012-02-26 Thread Anthony Liguori
I realize UIs are the third rail of QEMU development, but over the years I've gotten a lot of feedback from users about our UI. I think everyone struggles with the SDL interface and its lack of discoverability but it's worse than I think most people realize for users that rely on accessibility

[Qemu-devel] [PATCH 2/8] chr: check to see if front end has registered a read function

2012-02-26 Thread Anthony Liguori
Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- qemu-char.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/qemu-char.c b/qemu-char.c index 5b2b35e..22bfb29 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -160,7 +160,9 @@ int qemu_chr_be_can_write(CharDriverState

[Qemu-devel] [PATCH 8/8] gtk: make default UI

2012-02-26 Thread Anthony Liguori
A user can still enable SDL with '-sdl' or '-display sdl' but start making the default display GTK by default. I'd also like to deprecate the SDL display and remove it in a few releases. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- vl.c | 38 -- 1

[Qemu-devel] [PATCH 7/8] gtk: add translation support

2012-02-26 Thread Anthony Liguori
The de_DE translation is just a placeholder so that I could test the infrastructure. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- Makefile |3 +++ configure |4 po/Makefile| 43 +++ po/de_DE.po| 37

[Qemu-devel] [PATCH 6/8] gtk: add support for screen scaling and full screen (v2)

2012-02-26 Thread Anthony Liguori
Basic menu items to enter full screen mode and zoom in/out. Unlike SDL, we don't allow arbitrary scaling based on window resizing. The current behavior with SDL causes a lot of problems for me. Sometimes I accidentally resize the window a tiny bit while trying to move it (Ubuntu's 1-pixel

Re: [Qemu-devel] English proof-reading services for your scientific, research or academic papers

2012-02-26 Thread Fumiyo Kondo
Dear Proofreader, I have an interest in your proofreading service and a question on the delivery of proofreading service. For the manuscrpt of around 5000 words when theqoutput of the service will be delivered? Best regards, Fumiyo Kondo Division of Policy and Planning Sciences Faculty of

[Qemu-devel] [PATCH 4/8] gtk: add virtual console support (v2)

2012-02-26 Thread Anthony Liguori
This enables VteTerminal to be used to render the text consoles. VteTerminal is the same widget used by gnome-terminal which means it's VT100 emulation is as good as they come. It's also screen reader accessible, supports copy/paste, proper scrolling and most of the other features you would

[Qemu-devel] [PATCH 1/8] console: allow VCs to be overridden by UI

2012-02-26 Thread Anthony Liguori
We want to expose VCs using a VteTerminal widget. We need access to provide our own CharDriverState in order to do this. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- console.c | 14 +- console.h |6 +- qemu-char.c |2 +- 3 files changed, 19 insertions(+),

[Qemu-devel] [PATCH 3/8] ui: add basic GTK gui (v2)

2012-02-26 Thread Anthony Liguori
This is minimalistic and just contains the basic widget infrastructure. The GUI consists of a menu and a GtkNotebook. To start with, the notebook has its tabs hidden which provides a UI that looks very similar to SDL with the exception of the menu bar. The menu bar allows a user to toggle the

[Qemu-devel] [PATCH 5/8] gtk: add support for input grabbing

2012-02-26 Thread Anthony Liguori
There is a small deviation from SDL's behavior here. Instead of Ctrl+Alt triggering grab, we now use Ctrl-Alt-g to trigger grab. GTK will not accept Ctrl+Alt as an accelerator since it just consists of modifiers. Having grab as a proper accelerator is important as it allows a user to override

Re: [Qemu-devel] [PATCH 6/6] kvm: Fix dirty tracking with large kernel page size

2012-02-26 Thread David Gibson
On Sun, Feb 26, 2012 at 09:41:17PM +, Blue Swirl wrote: On Fri, Feb 24, 2012 at 00:23, David Gibson da...@gibson.dropbear.id.au wrote: From: Benjamin Herrenschmidt b...@kernel.crashing.org If the kernel page size is larger than TARGET_PAGE_SIZE, which happens for example on ppc64

Re: [Qemu-devel] [PATCH 4/8] Add universal DMA helper functions

2012-02-26 Thread David Gibson
On Sun, Feb 26, 2012 at 12:04:49PM +0200, Michael S. Tsirkin wrote: On Fri, Feb 24, 2012 at 02:27:39PM +1100, David Gibson wrote: Not that long ago, every device implementation using DMA directly accessed guest memory using cpu_physical_memory_*(). This meant that adding support for a

Re: [Qemu-devel] [PATCH 6/6] kvm: Fix dirty tracking with large kernel page size

2012-02-26 Thread Benjamin Herrenschmidt
On Mon, 2012-02-27 at 11:16 +1100, David Gibson wrote: If the kernel page size is larger than TARGET_PAGE_SIZE, which happens for example on ppc64 with kernels compiled for 64K pages, the dirty tracking doesn't work. I think a better solution would be to push this to memory API and

Re: [Qemu-devel] [PATCH 6/6] kvm: Fix dirty tracking with large kernel page size

2012-02-26 Thread Alexander Graf
On 26.02.2012, at 22:41, Blue Swirl wrote: On Fri, Feb 24, 2012 at 00:23, David Gibson da...@gibson.dropbear.id.au wrote: From: Benjamin Herrenschmidt b...@kernel.crashing.org If the kernel page size is larger than TARGET_PAGE_SIZE, which happens for example on ppc64 with kernels

[Qemu-devel] [PATCH] kvm: notify host when guest paniced

2012-02-26 Thread Wen Congyang
We can know the guest is paniced when the guest runs on xen. But we do not have such feature on kvm. This patch implemnts this feature, and the implementation is the same as xen: register panic notifier, and call hypercall when the guest is paniced. Signed-off-by: Wen Congyang

[Qemu-devel] [PATCH]qemu: deal with guest paniced event

2012-02-26 Thread Wen Congyang
When the host knows the guest is paniced, it will set exit_reason to KVM_EXIT_GUEST_PANIC. So if qemu receive this exit_reason, we can send a event to tell management application that the guest is paniced. Signed-off-by: Wen Congyang we...@cn.fujitsu.com --- kvm-all.c |3 +++

Re: [Qemu-devel] [PULL] Zynq-7000 EPP platform model

2012-02-26 Thread Peter Crosthwaite
On Sat, Feb 25, 2012 at 2:37 AM, Anthony Liguori anth...@codemonkey.ws wrote: On 02/20/2012 12:25 AM, Peter Crosthwaite wrote: Pull Request for Zynq-7000 platform model initial support. The following changes since commit 99c7f87826337fa81f2f0f9baa9ca0a44faf90e9:   input: send kbd+mouse

Re: [Qemu-devel] [PATCH 0/8] Add GTK UI to enable basic accessibility (v2)

2012-02-26 Thread malc
On Sun, 26 Feb 2012, Anthony Liguori wrote: I realize UIs are the third rail of QEMU development, but over the years I've gotten a lot of feedback from users about our UI. I think everyone struggles with the SDL interface and its lack of discoverability but it's worse than I think most

Re: [Qemu-devel] [PATCH v2] net: add the support for -netdev socket, listen

2012-02-26 Thread Zhi Yong Wu
On Sun, Feb 26, 2012 at 10:48 PM, Stefan Hajnoczi stefa...@gmail.com wrote: On Sat, Feb 18, 2012 at 9:19 AM,  zwu.ker...@gmail.com wrote: From: Zhi Yong Wu wu...@linux.vnet.ibm.com The -net socket,listen option does not work with the newer -netdev syntax:

Re: [Qemu-devel] [PATCH] qed: replace vm_clock with rt_clock for qemu-tool compatibility

2012-02-26 Thread Zhi Yong Wu
On Sun, Feb 26, 2012 at 10:55 PM, Stefan Hajnoczi stefa...@linux.vnet.ibm.com wrote: The QED dirty bit timer marks the file clean after allocating writes have drained.  This is cheaper than clearing/setting the dirty bit on each allocating write because the timer introduces a grace period which