Re: [Qemu-devel] [PATCH] build: qemu-ga: add 'qemu-ga' build target for w32

2015-11-15 Thread Stefan Weil
Am 09.09.2015 um 11:42 schrieb Paolo Bonzini: > > On 08/09/2015 17:47, Michael Roth wrote: >> Currently POSIX builds rely on 'qemu-ga' target to do qga-only >> distributable build. On w32, as with most standalone binary targets, >> we rely on 'qemu-ga.exe' target. >> >> Unlike with POSIX, qemu-ga f

Re: [Qemu-devel] [PATCH v4 4/4] devicetree: update documentation for fw_cfg ARM bindings

2015-11-15 Thread Rob Herring
On Fri, Nov 13, 2015 at 10:03:55PM -0500, Gabriel L. Somlo wrote: > From: Gabriel Somlo > > Remove redundant details from > Documentation/devicetree/bindings/arm/fw-cfg.txt, > and replace them with a pointer to the more comprehensive > fw_cfg documentation privided by > Documentation/ABI/testing/

[Qemu-devel] QEMU versus Facebook's Infer static analysis tool

2015-11-15 Thread Peter Maydell
So I tried out Facebook's Infer static analysis tool (http://fbinfer.com/) on QEMU this evening, just to see whether it would be able to handle our codebase and if it would report anything interesting. The good news is it was easy enough to install and didn't fall over; all you have to do to run i

Re: [Qemu-devel] [PATCH v4 00/17] Add an IPMI device to QEMU

2015-11-15 Thread Cédric Le Goater
On 11/12/2015 08:02 PM, miny...@acm.org wrote: > This is a long delayed patch set, but I think I have things reworked > to make Igor happy with the way ACPI and SMBIOS work. This is more > consistent with the way most other things work, anyway. It did > require adding stubs for systems without IP

[Qemu-devel] [PATCH for-2.5] oslib-win32: Change return type of function getpagesize

2015-11-15 Thread Stefan Weil
getpagesize on Linux returns an int. Fix QEMU's implementation for Windows to return an int (instead of size_t), too. This fixes a compiler warning which was introduced recently (commit 093e3c42). Signed-off-by: Stefan Weil --- Peter, do you need a pull request for this fix or can you apply it

Re: [Qemu-devel] [PATCH v2] target-arm: Clean up DISAS_UPDATE usage in AArch32 translation code

2015-11-15 Thread Peter Maydell
On 13 November 2015 at 21:13, Sergey Fedorov wrote: > On 10.11.2015 15:15, Peter Maydell wrote: >> So the way the 32-bit code works for singlestep is complicated >> because of the need to handle the conditional instructions, >> which means you get a lot more cases like "this is a conditional >> SW

Re: [Qemu-devel] [PATCH] vhost: Fix aborting if KVM does not support eventfds

2015-11-15 Thread Michael S. Tsirkin
On Fri, Nov 13, 2015 at 12:28:10PM +0300, Pavel Fedin wrote: > If you happen to have a stock kernel of old version, like 3.x, and you > attempt to enable vhost by setting vhost=on, qemu aborts with error: > > kvm_mem_ioeventfd_add: error adding ioeventfd: Function not implemented > > This patch a

Re: [Qemu-devel] [PULL 25/57] Add wrappers and handlers for sending/receiving the postcopy-ram migration messages.

2015-11-15 Thread Stefan Weil
Am 10.11.2015 um 15:25 schrieb Juan Quintela: > From: "Dr. David Alan Gilbert" > > The state of the postcopy process is managed via a series of messages; >* Add wrappers and handlers for sending/receiving these messages >* Add state variable that track the current state of postcopy > > Sig