[Qemu-devel] [Bug 1278977] Re: qemu-system-sparc64 crash when initializing disk

2014-02-16 Thread wbx
Hi Mark, thanks for the tip. It works fine with virtio drivers. Is there any specific reason, why Qemu sparc64 virtualization have to use the cmd646 driver? For example mips emulator is using PIIX3/4 IDE driver. thanks so far, Waldemar -- You received this bug notification because you are a

Re: [Qemu-devel] [PATCH] virtio-net: Do not filter VLANs without F_CTRL_VLAN

2014-02-16 Thread Michael S. Tsirkin
On Wed, Feb 12, 2014 at 10:46:28PM +0100, Stefan Fritsch wrote: If VIRTIO_NET_F_CTRL_VLAN is not negotiated, do not filter out all VLAN-tagged packets but send them to the guest. Signed-off-by: Stefan Fritsch s...@sfritsch.de Thanks for the patch. I think there are still some issues after

[Qemu-devel] [PATCH v2] hw/timer/grlib_gptimer: Avoid integer overflows

2014-02-16 Thread Sebastian Huber
The GPTIMER uses 32-bit registers. Use a 64-bit operation to get the ptimer count, otherwise we end up with a count of 0 for GPTIMER counter values of 0x. Use the GPTIMER counter value for tracing to avoid an overflow of the 32-bit value passed to trace_grlib_gptimer_enable().

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 14, 2014 at 11:13:04PM +0100, Alexander Graf wrote: On 14.02.2014, at 23:06, Gabriel L. Somlo gso...@gmail.com wrote: On Fri, Feb 14, 2014 at 10:21:09PM +0100, Alexander Graf wrote: Can't you just turn the polarity around in the pci host adapter? I tried this:

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 14, 2014 at 04:13:11PM -0500, Gabriel L. Somlo wrote: On Tue, Feb 11, 2014 at 09:54:44PM +0200, Michael S. Tsirkin wrote: On Tue, Feb 11, 2014 at 01:23:31PM -0500, Gabriel L. Somlo wrote: 1. Regarding KVM and the polarity xor line in the patch above: Does anyone have

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 14, 2014 at 04:13:11PM -0500, Gabriel L. Somlo wrote: On Tue, Feb 11, 2014 at 09:54:44PM +0200, Michael S. Tsirkin wrote: On Tue, Feb 11, 2014 at 01:23:31PM -0500, Gabriel L. Somlo wrote: 1. Regarding KVM and the polarity xor line in the patch above: Does anyone have

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 14, 2014 at 11:13:04PM +0100, Alexander Graf wrote: On 14.02.2014, at 23:06, Gabriel L. Somlo gso...@gmail.com wrote: On Fri, Feb 14, 2014 at 10:21:09PM +0100, Alexander Graf wrote: Can't you just turn the polarity around in the pci host adapter? I tried this:

Re: [Qemu-devel] [RFC 4/9] acpi: replace opencoded opcodes with defines

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 07, 2014 at 01:51:31PM +0100, Igor Mammedov wrote: Signed-off-by: Igor Mammedov imamm...@redhat.com The reason I avoided doing this is that this conflicts with qemu coding style which only uses camel case for types. So as a minimum this needs a comment explaining that we are using

Re: [Qemu-devel] [RFC 5/9] acpi: add PNP0C02 to PCI0 bus

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 07, 2014 at 01:51:32PM +0100, Igor Mammedov wrote: Signed-off-by: Igor Mammedov imamm...@redhat.com --- hw/i386/acpi-build.c | 55 ++ 1 files changed, 55 insertions(+), 0 deletions(-) diff --git a/hw/i386/acpi-build.c

Re: [Qemu-devel] [PATCH 0/8] tcg optimization improvements

2014-02-16 Thread Paolo Bonzini
Il 31/01/2014 15:46, Richard Henderson ha scritto: The first 4 of these are ones that Aurelien posted some time ago, and I reviewed, but never seemed to get committed. The second 4 address optimization issues that I noticed with the BMI instruction set extension, adding ANDC support to x86_64.

Re: [Qemu-devel] [PATCH 5/5] tcg/i386: Use SHLX/SHRX/SARX instructions

2014-02-16 Thread Paolo Bonzini
Il 31/01/2014 15:43, Richard Henderson ha scritto: +gen_shift_maybe_vex: +if (have_bmi2 !const_args[2]) { +tcg_out_vex_modrm(s, vexop + rexw, args[0], args[2], args[1]); +break; +} +/* FALLTHRU */ What if args[2] happens to be ECX? Apart

Re: [Qemu-devel] [PATCH 0/5] tcg/i386 support for bmi

2014-02-16 Thread Paolo Bonzini
Il 14/02/2014 22:44, Richard Henderson ha scritto: Ping. On 01/31/2014 06:43 AM, Richard Henderson wrote: There are three separate architecture extensions for logical operations, BMI, BMI2, and TBM. The first two are supported on Intel Haswell and AMD Excavator, while slightly earlier AMD

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Alex Williamson
On Sun, 2014-02-16 at 13:41 +0200, Michael S. Tsirkin wrote: On Fri, Feb 14, 2014 at 11:13:04PM +0100, Alexander Graf wrote: On 14.02.2014, at 23:06, Gabriel L. Somlo gso...@gmail.com wrote: On Fri, Feb 14, 2014 at 10:21:09PM +0100, Alexander Graf wrote: Can't you just turn the

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Peter Maydell
On 16 February 2014 11:34, Michael S. Tsirkin m...@redhat.com wrote: Hmm no this is all wrong, from API point of view, devices shoud not care about value of interrupt. They just assert/deassert interrupts. It so happens that 1 means assert 0 means deassert. Yeah, we generally model things as

Re: [Qemu-devel] [RFC 6/9] acpi: consume GPE0 IO resources in PNP0C02 device

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 07, 2014 at 01:51:33PM +0100, Igor Mammedov wrote: Signed-off-by: Igor Mammedov imamm...@redhat.com --- hw/i386/acpi-build.c | 62 ++ 1 files changed, 62 insertions(+), 0 deletions(-) diff --git a/hw/i386/acpi-build.c

Re: [Qemu-devel] [RFC 7/9] acpi: consume CPU hotplug IO resource in PNP0C02 device

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 07, 2014 at 01:51:34PM +0100, Igor Mammedov wrote: Signed-off-by: Igor Mammedov imamm...@redhat.com --- hw/i386/acpi-build.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c index ce5f715..5cd0c80

Re: [Qemu-devel] [RFC 8/9] pcihp: expose PCI hotplug MMIO base/length as properties of piix4pm

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 07, 2014 at 01:51:35PM +0100, Igor Mammedov wrote: with introduction of PCIHP, MMIO range becomes changable at runtime so it's not possible to statically punch hole PCI bus _CRS. Making IO base/length available as readonly properties allow acpi builder to get values and reserve

Re: [Qemu-devel] [RFC 0/9] generate dynamic _CRS for motherboard resources

2014-02-16 Thread Michael S. Tsirkin
On Fri, Feb 07, 2014 at 01:51:27PM +0100, Igor Mammedov wrote: Since introduction of PCIHP, it became problematic to punch hole in PCI0._CRS statically since PCI hotplug region size became runtime changeable. What makes it runtime changeable? So replace static hole punching with dynamically

Re: [Qemu-devel] [PATCH v2 01/20] nbd: produce a better error if neither host nor port is passed

2014-02-16 Thread Paolo Bonzini
Il 14/02/2014 17:54, Jeff Cody ha scritto: On Tue, Feb 11, 2014 at 06:03:34PM +0100, Paolo Bonzini wrote: Before: $ qemu-io-old qemu-io-old open -r -o file.driver=nbd qemu-io-old: can't open device (null): Could not open image: Invalid argument $ ./qemu-io-old qemu-io-old

[Qemu-devel] Hotplug vs. multifunction regression

2014-02-16 Thread Nigel Kukard
Hi guys, Starting from the patch series in 9f117d41 the below error is observed... (reverting to the patch right before it works fine a1483f88) Here is the error: qemu-system-x86_64: hw/pci/pcie.c:240: pcie_cap_slot_hotplug_common: Assertion `((pci_dev-devfn) 0x07) == 0' failed. Here is the

Re: [Qemu-devel] [PATCH v2] discard rbd error output when not relevant in qemu-iotests

2014-02-16 Thread Benoît Canet
The Thursday 09 Jan 2014 à 09:45:14 (+0800), Stefan Hajnoczi wrote : On Wed, Jan 08, 2014 at 09:05:38PM +0100, Loic Dachary wrote: Suppress rbd progress messages with --no-progress so they are not confused with an error output when comparing test results ( progress is displayed on stderr ).

Re: [Qemu-devel] RFC: ioapic polarity vs. qemu os-x guest

2014-02-16 Thread Michael S. Tsirkin
On Sun, Feb 16, 2014 at 07:47:00AM -0700, Alex Williamson wrote: On Sun, 2014-02-16 at 13:41 +0200, Michael S. Tsirkin wrote: On Fri, Feb 14, 2014 at 11:13:04PM +0100, Alexander Graf wrote: On 14.02.2014, at 23:06, Gabriel L. Somlo gso...@gmail.com wrote: On Fri, Feb 14, 2014 at

Re: [Qemu-devel] [PATCH] memory_region_present: return false if address is not found in child MemoryRegion

2014-02-16 Thread Michael S. Tsirkin
On Thu, Feb 06, 2014 at 11:24:33AM +0100, Igor Mammedov wrote: Windows XP shows COM2 port as non functional in Device Manager although no COM2 port backing device is present in QEMU. That is caused by the fact that QEMU reports to OSPM that device is present by setting 5th bit in

Re: [Qemu-devel] [PATCH 5/5] tcg/i386: Use SHLX/SHRX/SARX instructions

2014-02-16 Thread Richard Henderson
On 02/16/2014 06:21 AM, Paolo Bonzini wrote: Il 31/01/2014 15:43, Richard Henderson ha scritto: +gen_shift_maybe_vex: +if (have_bmi2 !const_args[2]) { +tcg_out_vex_modrm(s, vexop + rexw, args[0], args[2], args[1]); +break; +} +/* FALLTHRU

Re: [Qemu-devel] [PATCH 1/5] disas/i386: Disassemble ANDN/SHLX/SHRX/SHAX

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:43:34AM -0600, Richard Henderson wrote: Signed-off-by: Richard Henderson r...@twiddle.net --- disas/i386.c | 146 +-- 1 file changed, 132 insertions(+), 14 deletions(-) diff --git a/disas/i386.c

Re: [Qemu-devel] [PATCH 2/5] tcg/i386: Move TCG_CT_CONST_* to tcg-target.c

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:43:35AM -0600, Richard Henderson wrote: These are not needed by users of tcg-target.h. No need to recompile when we adjust them. Signed-off-by: Richard Henderson r...@twiddle.net --- tcg/i386/tcg-target.c | 4 tcg/i386/tcg-target.h | 3 --- 2 files

Re: [Qemu-devel] [PATCH 3/5] tcg/i386: Add tcg_out_vex_modrm

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:43:36AM -0600, Richard Henderson wrote: Prepare for emitting BMI insns which require VEX encoding. Signed-off-by: Richard Henderson r...@twiddle.net --- tcg/i386/tcg-target.c | 41 ++--- 1 file changed, 38 insertions(+), 3

Re: [Qemu-devel] [PATCH 4/5] tcg/i386: Use ANDN instruction

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:43:37AM -0600, Richard Henderson wrote: Note that the optimizer cannot simplify ANDC X,Y,C to AND X,Y,~C so we must handle constants in the implementation of andc. I do wonder if it actually won't be a better idea to add this simplification to the optimizer instead of

Re: [Qemu-devel] [PATCH 5/8] tcg/optimize: Handle known-zeros masks for ANDC

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:47:00AM -0600, Richard Henderson wrote: Signed-off-by: Richard Henderson r...@twiddle.net --- tcg/optimize.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/tcg/optimize.c b/tcg/optimize.c index d3b099a..3291a08 100644 --- a/tcg/optimize.c +++

Re: [Qemu-devel] [PATCH 5/5] tcg/i386: Use SHLX/SHRX/SARX instructions

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:43:38AM -0600, Richard Henderson wrote: These three-operand shift instructions do not require the shift count to be placed into ECX. This reduces the number of mov insns required, with the mere addition of a new register constraint. Don't attempt to get rid of the

[Qemu-devel] [PATCH 1/6] target-arm: A64: Add opcode comments to disas_simd_three_reg_diff

2014-02-16 Thread Peter Maydell
The opcode switch in disas_simd_three_reg_diff() is missing the customary comments indicating which cases correspond to which instructions. Add them. Signed-off-by: Peter Maydell peter.mayd...@linaro.org --- target-arm/translate-a64.c | 22 +++--- 1 file changed, 11

[Qemu-devel] [PATCH 5/6] target-arm: A64: Implement PMULL instruction

2014-02-16 Thread Peter Maydell
Implement the PMULL instruction; this is the last unimplemented insn in the three-reg-diff group. Note that PMULL with size 3 is considered part of the AES part of the crypto extensions (see the ID_AA64ISAR0_EL1 register definition in the v8 ARM ARM), so it isn't necessary to burn an extra

[Qemu-devel] [PATCH 0/6] A64: finish Neon 3-reg-diff category, add LDTR/STTR

2014-02-16 Thread Peter Maydell
Another patchset of random filling in the gaps in our Neon coverage. Patches 1 through 5 complete our handling of the three-reg-different category of Neon instructions. Patch 6 implements the unprivileged load/store LDTR/STTR instructions. (In fact AArch64 Linux doesn't use these, and they're

[Qemu-devel] [PATCH 6/6] target-arm: A64: Implement unprivileged load/store

2014-02-16 Thread Peter Maydell
Implement the unprivileged load and store instructions. Signed-off-by: Peter Maydell peter.mayd...@linaro.org --- target-arm/translate-a64.c | 69 +- 1 file changed, 37 insertions(+), 32 deletions(-) diff --git a/target-arm/translate-a64.c

[Qemu-devel] [PATCH 4/6] target-arm: A64: Implement narrowing three-reg-diff operations

2014-02-16 Thread Peter Maydell
Implement the narrowing three-reg-diff operations: ADDHN, RADDHN, SUBHN and RSUBHN. Signed-off-by: Peter Maydell peter.mayd...@linaro.org --- target-arm/translate-a64.c | 60 +- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git

Re: [Qemu-devel] [PATCH 6/8] tcg/optimize: Simply some logical ops to NOT

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:47:01AM -0600, Richard Henderson wrote: Given, of course, an appropriate constant. These could be generated from the canonical operation for inversion on the guest, or via other optimizations. Signed-off-by: Richard Henderson r...@twiddle.net --- tcg/optimize.c

[Qemu-devel] [PATCH 2/6] target-arm: A64: Add most remaining three-reg-diff widening ops

2014-02-16 Thread Peter Maydell
Add the remainder of the 64x64-128 operations in the three-reg-diff category except for PMULL, PMULL2. Signed-off-by: Peter Maydell peter.mayd...@linaro.org --- target-arm/translate-a64.c | 109 - 1 file changed, 88 insertions(+), 21 deletions(-) diff

[Qemu-devel] [PATCH 3/6] target-arm: A64: Implement the wide 3-reg-different operations

2014-02-16 Thread Peter Maydell
Implement the wide three-reg-different operations: SADDW, UADDW, SSUBW and USUBW. Signed-off-by: Peter Maydell peter.mayd...@linaro.org --- target-arm/translate-a64.c | 41 - 1 file changed, 40 insertions(+), 1 deletion(-) diff --git

Re: [Qemu-devel] [PATCH 7/8] tcg/optimize: Optmize ANDC X, Y, Y to MOV X, 0

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:47:02AM -0600, Richard Henderson wrote: Like we already do for SUB and XOR. Signed-off-by: Richard Henderson r...@twiddle.net --- tcg/optimize.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tcg/optimize.c b/tcg/optimize.c index cdfc746..a703f8c 100644

Re: [Qemu-devel] [PATCH 8/8] tcg/optimize: Add more identity simplifications

2014-02-16 Thread Aurelien Jarno
On Fri, Jan 31, 2014 at 08:47:03AM -0600, Richard Henderson wrote: Recognize 0 operand to andc, and -1 operands to and, orc, eqv. Signed-off-by: Richard Henderson r...@twiddle.net --- tcg/optimize.c | 39 --- 1 file changed, 24 insertions(+), 15

Re: [Qemu-devel] [PATCH v1 2/2] Revert error: Don't use error_report() for assertion msgs.

2014-02-16 Thread Peter Maydell
On 30 January 2014 08:00, Markus Armbruster arm...@redhat.com wrote: Peter Maydell peter.mayd...@linaro.org writes: [MacOSX doesn't pull in common symbols from .o files in .a archives] Not ugly, but a sensible move (in my opinion) regardless of this specific issue: compile with -fno-common.

Re: [Qemu-devel] [PATCH v3] Fix QEMU build on OpenBSD on x86 archs

2014-02-16 Thread Brad Smith
On 26/01/14 1:06 PM, Paolo Bonzini wrote: Il 26/01/2014 02:37, Brad Smith ha scritto: Reviewed-by: Stefan Hajnoczi stefa...@redhat.com Is there some sort of process I am missing to have build fixes commited so that QEMU actually builds? Right now we have problems getting patches

[Qemu-devel] [PATCH] Sun4m : SCSI ESP controller

2014-02-16 Thread Olivier Danet
Two small fixes for the ESP (AM53C94) SCSI controller * Signal the end of the DMA transfer after a SCSI command. * The status register (RSTAT) is cleared after reading the interrupt status register (RINTR), except for the TC bit (=Count To Zero) and the scsi phase bits, which mirror SCSI

[Qemu-devel] [PATCH] Sun4m: Set HostID in NVRAM

2014-02-16 Thread Olivier Danet
Ping. Repost ! On 30/12/2013 15:02, Artyom Tarasenko wrote: On Mon, Dec 30, 2013 at 12:51 AM, Olivier Danet oda...@caramail.com wrote: On SparcStations, the HostID field in the NVRAM is equal to the last three bytes of the MAC address (which is also stored in the NVRAM). This constant is used

[Qemu-devel] [PATCH] Sun4m : Timer RUN/STOP bit.

2014-02-16 Thread Olivier Danet
The Sun4m architecture has one 'system' timer and one timer per CPU. The CPU timers can be configured in two modes : * 22bits Counter/Timer. Periodic interrupts. * 54bits User timer. For profiling. In this mode, the Run/Stop bit controls the timer. The run/stop bit controls the timer only when

[Qemu-devel] [PATCH 0/1] Sun4m : TCX framebuffer hardware acceleration

2014-02-16 Thread Olivier Danet
This patch adds hardware acceleration to QEMU's existing TCX emulation. Some features (the hardware cursor particularly) depends on properties set by OpenBIOS. Here is, for testing, the corresponding OpenBIOS TCX forth driver. These modifications are not yet comitted into OpenBIOS trunk.

[Qemu-devel] [PATCH 1/1] Sun4m : TCX framebuffer hardware acceleration

2014-02-16 Thread Olivier Danet
The S24/TCX framebuffer is a mildly accelerated video card, with blitter, stippler and hardware cursor. * Solaris and NetBSD 6.x use all the hardware acceleration features. * The Xorg driver (used by Linux) can use the hardware cursor only. This patch implements hardware acceleration in both

Re: [Qemu-devel] [PATCH v8 01/17] Convert -mem-path to QemuOpts and add prealloc and share properties

2014-02-16 Thread Paolo Bonzini
Il 15/02/2014 19:10, Michael Tokarev ha scritto: 13 февраля 2014 г. 16:03:12 GMT+04:00, Antonios Motakis a.mota...@virtualopensystems.com пишет: Extend -mem-path with additional properties: - prealloc=on|off - default off, same as -mem-prealloc - share=on|off - default off, memory is

Re: [Qemu-devel] [PATCH v3 21/31] target-arm: Implement AArch64 DAIF system register

2014-02-16 Thread Peter Crosthwaite
On Sun, Feb 16, 2014 at 2:07 AM, Peter Maydell peter.mayd...@linaro.org wrote: Implement the DAIF system register which is a view of the DAIF bits in PSTATE. Signed-off-by: Peter Maydell peter.mayd...@linaro.org Reviewed-by: Peter Crosthwaite peter.crosthwa...@xilinx.com ---

[Qemu-devel] Broken build slaves

2014-02-16 Thread Brad Smith
What's up with the broken build slaves? What changed over a week ago that has resulted in a bunch of them failing to work at all? -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.

[Qemu-devel] [PATCH target-arm v6 1/1] target-arm: Implements the ARM PMCCNTR register

2014-02-16 Thread Alistair Francis
This patch implements the ARM PMCCNTR register including the disable and reset components of the PMCR register. Signed-off-by: Alistair Francis alistair.fran...@xilinx.com --- This patch assumes that non-invasive debugging is not permitted when determining if the counter is disabled V6: Rebase to

Re: [Qemu-devel] [PATCH V6 03/10] qapi script: check correctness of discriminator values in union

2014-02-16 Thread Wenchao Xia
于 2014/2/14 17:23, Markus Armbruster 写道: Wenchao Xia xiaw...@linux.vnet.ibm.com writes: 于 2014/2/13 23:14, Markus Armbruster 写道: Wenchao Xia xiaw...@linux.vnet.ibm.com writes: It will check whether the values specified are written correctly, and whether all enum values are covered, when

[Qemu-devel] who do a send a link request to

2014-02-16 Thread Aryeh Friedman
PetiteCloud is a layer 0 cloud platform (see site for details of what that means and how it fits into the virtualization/cloud computing land scape) that supports among other hypervisors (I know qemu hates the term but that's what everyone else calls) QEMU. How do I go about getting a link on

[Qemu-devel] [PATCH] virtio-net: only output the vlan table when VIRTIO_NET_F_CTRL_VLAN is negotiated

2014-02-16 Thread Amos Kong
Stefan Fritsch just fixed a virtio-net driver bug [1], virtio-net won't filter out VLAN-tagged packets if VIRTIO_NET_F_CTRL_VLAN isn't negotiated. We should also not send the vlan table to management, this patch makes the vlan-talbe optional. [1]

Re: [Qemu-devel] qemu_rdma_cleanup seg - related to 5a91337?

2014-02-16 Thread Michael R. Hines
On 02/06/2014 08:26 PM, Dr. David Alan Gilbert wrote: Hi Isaku, I hit a seg in qemu_rdma_cleanup in the code changed by your '[PATCH] rdma: clean up of qemu_rdma_cleanup()' migration-rdma.c ~ 2241 if (rdma-qp) { rdma_destroy_qp(rdma-cm_id); rdma-qp = NULL; }

[Qemu-devel] [PATCH] acpi-build: append description for non-hotplug

2014-02-16 Thread Michael S. Tsirkin
As reported in http://article.gmane.org/gmane.comp.emulators.qemu/253987 Mac OSX actually requires describing all occupied slots in ACPI - even if hotplug isn't enabled. I didn't expect this so I dropped description of all non hotpluggable slots from ACPI. As a result: before commit

Re: [Qemu-devel] [PATCH v8 01/17] Convert -mem-path to QemuOpts and add prealloc and share properties

2014-02-16 Thread Michael S. Tsirkin
On Mon, Feb 17, 2014 at 12:42:45AM +0100, Paolo Bonzini wrote: Il 15/02/2014 19:10, Michael Tokarev ha scritto: 13 февраля 2014 г. 16:03:12 GMT+04:00, Antonios Motakis a.mota...@virtualopensystems.com пишет: Extend -mem-path with additional properties: - prealloc=on|off - default off,