Re: [Qemu-devel] [PATCH] linux-user, s390x: ignore OS ABI value in ELF header

2017-11-11 Thread Thomas Huth
Am Fri, 10 Nov 2017 20:49:35 +0100 schrieb Laurent Vivier : > I have this error: > bash: /sbin/ldconfig: cannot execute binary file: Exec format error > > because /sbin/ldconfig is: > ELF 64-bit MSB executable, IBM S/390, version 1 (GNU/Linux), > statically linked, for GNU/Linux 3.2.0, > BuildID[

[Qemu-devel] [PATCH for-2.11] nbd: Don't crash when server reports NBD_CMD_READ failure

2017-11-11 Thread Eric Blake
If a server fails a read, for example with EIO, but the connection is still live, then we would crash trying to print a non-existent error message. Bug introduced in commit f140e300. Signed-off-by: Eric Blake --- block/nbd-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

Re: [Qemu-devel] [PULL for-2.11 0/2] Capstone updates

2017-11-11 Thread no-reply
Hi, This series seems to have some coding style problems. See output below for more information: Subject: [Qemu-devel] [PULL for-2.11 0/2] Capstone updates Type: series Message-id: 20171109075243.4794-1-richard.hender...@linaro.org === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git

Re: [Qemu-devel] kvm: virtio-net: saved image requires TUN_F_UFO support

2017-11-11 Thread Stefan Priebe - Profihost AG
Hello, Am 10.11.2017 um 05:18 schrieb Jason Wang: > > > On 2017年11月08日 19:22, Jason Wang wrote: >> >> >> On 2017年11月08日 18:46, Paolo Bonzini wrote: >>> On 08/11/2017 09:21, Jason Wang wrote: On 2017年11月08日 17:05, Stefan Priebe - Profihost AG wrote: > Am 08.11.2017 um 08:54 schrieb

[Qemu-devel] [PATCH V5] hw/pci-host: Fix x86 Host Bridges 64bit PCI hole

2017-11-11 Thread Marcel Apfelbaum
Currently there is no MMIO range over 4G reserved for PCI hotplug. Since the 32bit PCI hole depends on the number of cold-plugged PCI devices and other factors, it is very possible is too small to hotplug PCI devices with large BARs. Fix it by reserving 2G for I4400FX chipset in order to comply wi

Re: [Qemu-devel] [PATCH for-2.12 v3 01/11] spapr: add pseries 2.12 machine type

2017-11-11 Thread Greg Kurz
On Fri, 10 Nov 2017 15:20:07 + Cédric Le Goater wrote: > Signed-off-by: Cédric Le Goater > --- Reviewed-by: Greg Kurz > hw/ppc/spapr.c | 16 +++- > 1 file changed, 15 insertions(+), 1 deletion(-) > > diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c > index d682f013d422..a2dcbee0

Re: [Qemu-devel] [PATCH for-2.12 v3 02/11] ppc/xics: remove useless if condition

2017-11-11 Thread Greg Kurz
On Fri, 10 Nov 2017 15:20:08 + Cédric Le Goater wrote: > The previous code section uses a 'first < 0' test and returns. Therefore, > there is no need to test the 'first' variable against '>= 0' afterwards. > > Signed-off-by: Cédric Le Goater > --- Reviewed-by: Greg Kurz > hw/intc/xics_s

Re: [Qemu-devel] UT Austin Virtualization project

2017-11-11 Thread Thomas Huth
On 11.11.2017 00:51, william lin wrote: > Hi all, > > My name is William Lin. I am an undergrad student at UT Austin and for our > virtualization class we have to contribute to a open source repo related to > virtualization. I am working in a group of two with about a month of time. > We are both

Re: [Qemu-devel] [PATCH v1] highbank: validate register offset before access

2017-11-11 Thread no-reply
Hi, This series seems to have some coding style problems. See output below for more information: Subject: [Qemu-devel] [PATCH v1] highbank: validate register offset before access Type: series Message-id: 201708.32724-1-ppan...@redhat.com === TEST SCRIPT BEGIN === #!/bin/bash BASE=base

Re: [Qemu-devel] [Qemu-arm] [PATCH] highbank: validate register offset before access

2017-11-11 Thread P J P
Hello Philippe, +-- On Fri, 10 Nov 2017, Philippe Mathieu-Daudé wrote --+ | I'd report that: | |qemu_log_mask(LOG_UNIMP, ... | | Cc'ing Shawn & Rob since this might also be a LOG_GUEST_ERROR. | | Mixed declarations (interleaving statements and declarations within | blocks) are gen

[Qemu-devel] [PATCH v1] highbank: validate register offset before access

2017-11-11 Thread P J P
From: Prasad J Pandit An 'offset' parameter sent to highbank register r/w functions could be greater than number(NUM_REGS=0x200) of hb registers, leading to an OOB access issue. Add check to avoid it. Reported-by: Moguofang (Dennis mo) Signed-off-by: Prasad J Pandit --- hw/arm/highbank.c | 15