Re: [Qemu-devel] [PULL v4 00/35] Misc patches for 2018-12-21

2018-12-22 Thread Paolo Bonzini
On 21/12/18 22:09, Peter Maydell wrote: > I don't really understand what's going on here, or why > it only happens with this one system (my main x86-64 > Linux Ubuntu 16.04.5 box) and not the various others I'm > running test builds on. But it does seem to be 100% > reliable with any of these pullr

Re: [Qemu-devel] [PATCH] i386: remove the 'INTEL_PT' CPUID bit from named CPU models

2018-12-22 Thread Paolo Bonzini
On 22/12/18 02:01, Robert Hoo wrote: > On Fri, 2018-12-21 at 16:27 +0100, Paolo Bonzini wrote: >> On 21/12/18 16:22, Philippe Mathieu-Daudé wrote: >>> Hi Paolo, >>> >>> On 12/21/18 7:30 AM, Paolo Bonzini wrote: From: Robert Hoo Processor tracing is not yet implemented for KVM and it

Re: [Qemu-devel] Segfaults in chardev due to races

2018-12-22 Thread Paolo Bonzini
On 21/12/18 23:31, Max Reitz wrote: > I suppose the issue is that QMP events are sent by one thread, and > client disconnects are handled by a different one. So if a QMP event is > sent while a client disconnects concurrently, races may occur; and the > only protection against concurrent access ap

Re: [Qemu-devel] [RFC PATCH 0/7] virtio-fs: shared file system for virtual machines3

2018-12-22 Thread jiangyiwen
On 2018/12/11 1:31, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > Hi, > This is the first RFC for the QEMU side of 'virtio-fs'; > a new mechanism for mounting host directories into the guest > in a fast, consistent and secure manner. Our primary use > case is kata co

[Qemu-devel] [PATCH PULL 04/31] hw/rdma: Return qpn 1 if ibqp is NULL

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Device is not supporting QP0, only QP1. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/rdma_backend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/rdma/rdma_backend.h b/hw/rdma/rdma_backend.h in

[Qemu-devel] [PATCH PULL 02/31] contrib/rdmacm-mux: Add implementation of RDMA User MAD multiplexer

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia RDMA MAD kernel module (ibcm) disallow more than one MAD-agent for a given MAD class. This does not go hand-by-hand with qemu pvrdma device's requirements where each VM is MAD agent. Fix it by adding implementation of RDMA MAD multiplexer service which on one hand register as a

[Qemu-devel] [PATCH PULL 01/31] hw/pvrdma: Check the correct return value

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Return value of 0 means ok, we want to free the memory only in case of error. Signed-off-by: Yuval Shaia Message-Id: <20181025061700.17050-1-yuval.sh...@oracle.com> Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma_cmd.c | 2 +- 1 file chan

[Qemu-devel] [PATCH PULL 00/31] RDMA queue

2018-12-22 Thread Marcel Apfelbaum
The following changes since commit 891ff9f4a371da2dbd5244590eb35e8d803e18d8: Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.0-20181221' into staging (2018-12-21 15:49:59 +) are available in the Git repository at: https://github.com/marcel-apf/qemu tags/rdma-pull-request f

[Qemu-devel] [PATCH PULL 08/31] hw/pvrdma: Make default pkey 0xFFFF

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Commit 6e7dba23af ("hw/pvrdma: Make default pkey 0x") exports default pkey as external definition but omit the change from 0x7FFF to 0x. Fixes: 6e7dba23af ("hw/pvrdma: Make default pkey 0x") Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by:

[Qemu-devel] [PATCH PULL 09/31] hw/pvrdma: Set the correct opcode for recv completion

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia The function pvrdma_post_cqe populates CQE entry with opcode from the given completion element. For receive operation value was not set. Fix it by setting it to IBV_WC_RECV. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma

[Qemu-devel] [PATCH PULL 05/31] hw/rdma: Abort send-op if fail to create addr handler

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Function create_ah might return NULL, let's exit with an error. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/rdma_backend.c | 4 1 file changed, 4 insertions(+) diff --git a/hw/rdma/rdma_backend.c b/hw/rdma/rdma_

[Qemu-devel] [PATCH PULL 11/31] qapi: Define new QMP message for pvrdma

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia pvrdma requires that the same GID attached to it will be attached to the backend device in the host. A new QMP messages is defined so pvrdma device can broadcast any change made to its GID table. This event is captured by libvirt which in turn will update the GID table in the

[Qemu-devel] [PATCH PULL 03/31] hw/rdma: Add ability to force notification without re-arm

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Upon completion of incoming packet the device pushes CQE to driver's RX ring and notify the driver (msix). While for data-path incoming packets the driver needs the ability to control whether it wished to receive interrupts or not, for control-path packets such as incoming MAD t

[Qemu-devel] [PATCH PULL 06/31] hw/rdma: Add support for MAD packets

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia MAD (Management Datagram) packets are widely used by various modules both in kernel and in user space for example the rdma_* API which is used to create and maintain "connection" layer on top of RDMA uses several types of MAD packets. For more information please refer to chapte

[Qemu-devel] [PATCH PULL 13/31] vmxnet3: Move some definitions to header file

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia pvrdma setup requires vmxnet3 device on PCI function 0 and PVRDMA device on PCI function 1. pvrdma device needs to access vmxnet3 device object for several reasons: 1. Make sure PCI function 0 is vmxnet3. 2. To monitor vmxnet3 device state. 3. To configure node_guid accoring to

[Qemu-devel] [PATCH PULL 10/31] hw/pvrdma: Set the correct opcode for send completion

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia opcode for WC should be set by the device and not taken from work element. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma_qp_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/rdma/vm

[Qemu-devel] [PATCH PULL 17/31] hw/pvrdma: Fill all CQE fields

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Add ability to pass specific WC attributes to CQE such as GRH_BIT flag. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/rdma_backend.c | 59 +++-- hw/rdma/rdma_backend.h | 4 +--

[Qemu-devel] [PATCH PULL 07/31] hw/pvrdma: Make function reset_device return void

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia This function cannot fail - fix it to return void Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma_main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hw/rdma/vmw/pvrdma_main.c b/hw/rdm

[Qemu-devel] [PATCH PULL 14/31] hw/pvrdma: Make sure PCI function 0 is vmxnet3

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Guest driver enforces it, we should also. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma.h | 2 ++ hw/rdma/vmw/pvrdma_main.c | 12 2 files changed, 14 insertions(+) diff --git a/hw/rdma/vmw

[Qemu-devel] [PATCH PULL 15/31] hw/rdma: Initialize node_guid from vmxnet3 mac address

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia node_guid should be set once device is load. Make node_guid be GID format (32 bit) of PCI function 0 vmxnet3 device's MAC. A new function was added to do the conversion. So for example the MAC 56:b6:44:e9:62:dc will be converted to GID 54b6:44ff:fee9:62dc. Signed-off-by: Yuval

[Qemu-devel] [PATCH PULL 12/31] hw/pvrdma: Add support to allow guest to configure GID table

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia The control over the RDMA device's GID table is done by updating the device's Ethernet function addresses. Usually the first GID entry is determined by the MAC address, the second by the first IPv6 address and the third by the IPv4 address. Other entries can be added by adding m

[Qemu-devel] [PATCH PULL 18/31] hw/pvrdma: Fill error code in command's response

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Driver checks error code let's set it. In addition, for code simplification purposes, set response's fields ack, response and err outside of the scope of command handlers. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/v

[Qemu-devel] [PATCH PULL 16/31] hw/pvrdma: Make device state depend on Ethernet function state

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia User should be able to control the device by changing Ethernet function state so if user runs 'ifconfig ens3 down' the PVRDMA function should be down as well. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma_cmd

[Qemu-devel] [PATCH PULL 19/31] hw/rdma: Remove unneeded code that handles more that one port

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Device supports only one port, let's remove a dead code that handles more than one port. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/rdma_rm.c | 34 -- hw/rdma/rdma_rm.h | 2

[Qemu-devel] [PATCH PULL 21/31] hw/pvrdma: Clean device's resource when system is shutdown

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia In order to clean some external resources such as GIDs, QPs etc, register to receive notification when VM is shutdown. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma.h | 2 ++ hw/rdma/vmw/pvrdma_main.c |

[Qemu-devel] [PATCH PULL 20/31] vl: Introduce shutdown_notifiers

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Notifier will be used for signaling shutdown event to inform system is shutdown. This will allow devices and other component to run some cleanup code needed before VM is shutdown. Signed-off-by: Yuval Shaia Reviewed-by: Cornelia Huck Signed-off-by: Marcel Apfelbaum --- incl

[Qemu-devel] [PATCH PULL 29/31] pvrdma: release ring object in case of an error

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit create_cq and create_qp routines allocate ring object, but it's not released in case of an error, leading to memory leakage. Reported-by: Li Qiang Signed-off-by: Prasad J Pandit Reviewed-by: Yuval Shaia Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma_cmd.c | 37

[Qemu-devel] [PATCH PULL 22/31] hw/rdma: Do not use bitmap_zero_extend to free bitmap

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia bitmap_zero_extend is designed to work for extending, not for shrinking. Using g_free instead. Signed-off-by: Yuval Shaia Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/rdma_rm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/

[Qemu-devel] [PATCH PULL 26/31] rdma: check num_sge does not exceed MAX_SGE

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit rdma back-end has scatter/gather array ibv_sge[MAX_SGE=4] set to have 4 elements. A guest could send a 'PvrdmaSqWqe' ring element with 'num_sge' set to > MAX_SGE, which may lead to OOB access issue. Add check to avoid it. Reported-by: Saar Amar Signed-off-by: Prasad J Pand

[Qemu-devel] [PATCH PULL 30/31] rdma: remove unused VENDOR_ERR_NO_SGE macro

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit With commit 4481985c (rdma: check num_sge does not exceed MAX_SGE) macro VENDOR_ERR_NO_SGE is no longer in use - delete it. Signed-off-by: Prasad J Pandit Reviewed-by: Yuval Shaia Signed-off-by: Marcel Apfelbaum --- hw/rdma/rdma_backend.c | 3 +-- 1 file changed, 1 inse

[Qemu-devel] [PATCH PULL 27/31] pvrdma: add uar_read routine

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit Define skeleton 'uar_read' routine. Avoid NULL dereference. Reported-by: Li Qiang Signed-off-by: Prasad J Pandit Reviewed-by: Marcel Apfelbaum Signed-off-by: Marcel Apfelbaum --- hw/rdma/vmw/pvrdma_main.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/hw/rdm

[Qemu-devel] [PATCH PULL 28/31] pvrdma: check number of pages when creating rings

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit When creating CQ/QP rings, an object can have up to PVRDMA_MAX_FAST_REG_PAGES 8 pages. Check 'npages' parameter to avoid excessive memory allocation or a null dereference. Reported-by: Li Qiang Signed-off-by: Prasad J Pandit Reviewed-by: Yuval Shaia Signed-off-by: Marcel

[Qemu-devel] [PATCH PULL 23/31] hw/rdma: Do not call rdma_backend_del_gid on an empty gid

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia When device goes down the function fini_ports loops over all entries in gid table regardless of the fact whether entry is valid or not. In case that entry is not valid we'd like to skip from any further processing in backend device. Signed-off-by: Yuval Shaia Reviewed-by: Marc

[Qemu-devel] [PATCH PULL 31/31] pvrdma: check return value from pvrdma_idx_ring_has_ routines

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit pvrdma_idx_ring_has_[data/space] routines also return invalid index PVRDMA_INVALID_IDX[=-1], if ring has no data/space. Check return value from these routines to avoid plausible infinite loops. Reported-by: Li Qiang Signed-off-by: Prasad J Pandit Reviewed-by: Yuval Shaia

[Qemu-devel] [PATCH PULL 25/31] pvrdma: release device resources in case of an error

2018-12-22 Thread Marcel Apfelbaum
From: Prasad J Pandit If during pvrdma device initialisation an error occurs, pvrdma_realize() does not release memory resources, leading to memory leakage. Reported-by: Li Qiang Signed-off-by: Prasad J Pandit Message-Id: <20181212175817.815-1-ppan...@redhat.com> Reviewed-by: Yuval Shaia Sign

[Qemu-devel] [PATCH PULL 24/31] docs: Update pvrdma device documentation

2018-12-22 Thread Marcel Apfelbaum
From: Yuval Shaia Interface with the device is changed with the addition of support for MAD packets. Adjust documentation accordingly. While there fix a minor mistake which may lead to think that there is a relation between using RXE on host and the compatibility with bare-metal peers. Signed-o

[Qemu-devel] [PATCH v2] qemu: avoid memory leak while remove disk

2018-12-22 Thread w00426999
Memset vhost_dev to zero in the vhost_dev_cleanup function. This causes dev.vqs to be NULL, so that vqs does not free up space when calling the g_free function. This will result in a memory leak. But you can't release vqs directly in the vhost_dev_cleanup function, because vhost_net will also call

Re: [Qemu-devel] [PULL v4 00/35] Misc patches for 2018-12-21

2018-12-22 Thread Peter Maydell
On Sat, 22 Dec 2018 at 08:41, Paolo Bonzini wrote: > > On 21/12/18 22:09, Peter Maydell wrote: > > I don't really understand what's going on here, or why > > it only happens with this one system (my main x86-64 > > Linux Ubuntu 16.04.5 box) and not the various others I'm > > running test builds on

Re: [Qemu-devel] [PATCH PULL 00/31] RDMA queue

2018-12-22 Thread Peter Maydell
On Sat, 22 Dec 2018 at 09:50, Marcel Apfelbaum wrote: > > The following changes since commit 891ff9f4a371da2dbd5244590eb35e8d803e18d8: > > Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.0-20181221' > into staging (2018-12-21 15:49:59 +) > > are available in the Git repository

Re: [Qemu-devel] [PATCH PULL 00/31] RDMA queue

2018-12-22 Thread Marcel Apfelbaum
Hi Peter, On 12/22/18 3:59 PM, Peter Maydell wrote: On Sat, 22 Dec 2018 at 09:50, Marcel Apfelbaum wrote: The following changes since commit 891ff9f4a371da2dbd5244590eb35e8d803e18d8: Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.0-20181221' into staging (2018-12-21 15:49:59

Re: [Qemu-devel] [PATCH v12 01/31] block: Use bdrv_refresh_filename() to pull

2018-12-22 Thread Alberto Garcia
On Mon 17 Dec 2018 11:43:18 PM CET, Max Reitz wrote: > @@ -3327,6 +,7 @@ static int img_rebase(int argc, char **argv) > qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true); > } > > +bdrv_refresh_filename(bs); > overlay_filename = bs->exa

[Qemu-devel] [Bug 1809546] [NEW] Writing a byte to a pl011 SFR overwrites the whole SFR

2018-12-22 Thread Daniels Umanovskis
Public bug reported: The bug is present in QEMU 2.8.1 and, if my analysis is correct, also on master. I first noticed that a PL011 UART driver, which is fine on real hardware, fails to enable the RX interrupt in the IMSC register when running in QEMU. However, the problem only comes up if the cod

[Qemu-devel] [Bug 1809546] Re: Writing a byte to a pl011 SFR overwrites the whole SFR

2018-12-22 Thread Daniels Umanovskis
Adding the link script. ** Attachment added: "linkscript.ld" https://bugs.launchpad.net/qemu/+bug/1809546/+attachment/5224337/+files/linkscript.ld -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/18

Re: [Qemu-devel] [PATCH 0/3] Allow hw/audio drivers to pass raw DB values to audio/ drivers

2018-12-22 Thread Yaroslav Isakov
Sorry for a mess, forgot to add maintainer. Gerd, please, take a look at these patches. пт, 21 дек. 2018 г. в 22:40, Yaroslav Isakov : > > This patch series introduces the ability for virtual audio drivers to pass > information about guest-chosen DB values to backend audio drivers. > > For now, su

Re: [Qemu-devel] [PATCH 0/2] Fix TABs in many files

2018-12-22 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20181213223737.11793-1-pbonz...@redhat.com/ Hi, This series seems to have some coding style problems. See output below for more information: Message-id: 20181213223737.11793-1-pbonz...@redhat.com Type: series Subject: [Qemu-devel] [PATCH 0/2] Fix TABs in

Re: [Qemu-devel] [PATCH v3 8/9] target/ppc: move FP and VMX registers into aligned vsr register array

2018-12-22 Thread Mark Cave-Ayland
On 20/12/2018 17:57, Richard Henderson wrote: > On 12/20/18 8:31 AM, Mark Cave-Ayland wrote: >> The VSX register array is a block of 64 128-bit registers where the first 32 >> registers consist of the existing 64-bit FP registers extended to 128-bit >> using new VSR registers, and the last 32 regi

[Qemu-devel] [Bug 1793275] Re: Hosts fail to start after update to QEMU 3.0

2018-12-22 Thread Neil Darlow
This bug is not present in QEMU-3.1.0. -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1793275 Title: Hosts fail to start after update to QEMU 3.0 Status in QEMU: New Bug description: Host OS:

Re: [Qemu-devel] [PATCH v3 8/9] target/ppc: move FP and VMX registers into aligned vsr register array

2018-12-22 Thread Richard Henderson
On 12/22/18 10:09 AM, Mark Cave-Ayland wrote: > Do you want these helpers used just within > linux-user/ppc/signal.c or also within the other files touched by this patch > e.g. > arch_dump.c, gdbstub.c etc.? Everywhere. Thanks! r~

[Qemu-devel] [PATCH v2 3/3] dmg: don't skip zero chunk

2018-12-22 Thread yuchenlin
The dmg file has many tables which describe: "start from sector XXX to sector XXX, the compression method is XXX and where the compressed data resides on". Each sector in the expanded file should be covered by a table. The table will describe the offset of compressed data (or raw depends on the ty

[Qemu-devel] [PATCH v2 0/3] dmg: fixing reading in dmg

2018-12-22 Thread yuchenlin
There are two bugs in dmg reading. First, it may hang in binary search. this problem is solved by patch 1. Second, because of lacking zero chunk table, reading zero sector will return EIO. thie problem is solved by patch 2 and 3. Thanks v1 - >v2: * fix typos in patch 1 * add patch 2 and patch 3

[Qemu-devel] [PATCH v2 2/3] dmg: use enumeration type instead of hard coding number

2018-12-22 Thread yuchenlin
Signed-off-by: yuchenlin --- block/dmg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block/dmg.c b/block/dmg.c index 0e05702f5d..6b0a057bf8 100644 --- a/block/dmg.c +++ b/block/dmg.c @@ -267,7 +267,7 @@ static int dmg_read_mish_block(BDRVDMGState *s, DmgHeaderState *d

[Qemu-devel] [PATCH v2 1/3] dmg: fix binary search

2018-12-22 Thread yuchenlin
There is a possible hang in original binary search implementation. That is if chunk1 = 4, chunk2 = 5, chunk3 = 4, and we go else case. The chunk1 will be still 4, and so on. Signed-off-by: yuchenlin --- block/dmg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/block/

[Qemu-devel] [Bug 1809304] Re: qemu-img convert is freezing for some DMG files.

2018-12-22 Thread yuchenlin
Because of lacking zero chunk table, reading zero sector will return EIO. I have submitted a series to fix this problem. Please refer to this series: http://lists.nongnu.org/archive/html/qemu- devel/2018-12/msg05637.html Thanks, Yu-Chen Lin -- You received this bug notification because you are

Re: [Qemu-devel] [PATCH v3] s390x/pci: add common function measurement block

2018-12-22 Thread no-reply
Patchew URL: https://patchew.org/QEMU/1544796678-12736-1-git-send-email-pmo...@linux.ibm.com/ Hi, This series seems to have some coding style problems. See output below for more information: Message-id: 1544796678-12736-1-git-send-email-pmo...@linux.ibm.com Type: series Subject: [Qemu-devel]