From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCN5t-0004Nj-Ov for qemu-devel@nongnu.org; Mon, 13 Jun 2016 04:19:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCN5o-0001Vg-Op for qemu-devel@nongnu.org; Mon, 13 Jun 2016 04:19:37 -0400 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:39592) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCN5o-0001VY-H5 for qemu-devel@nongnu.org; Mon, 13 Jun 2016 04:19:32 -0400 Received: from pps.filterd (m0098410.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.11/8.16.0.11) with SMTP id u5D8JJnm120897 for ; Mon, 13 Jun 2016 04:19:30 -0400 Received: from e34.co.us.ibm.com (e34.co.us.ibm.com [32.97.110.152]) by mx0a-001b2d01.pphosted.com with ESMTP id 23gf65w6d3-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Mon, 13 Jun 2016 04:19:30 -0400 Received: from localhost by e34.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 13 Jun 2016 02:19:29 -0600 Received: from b03cxnp08028.gho.boulder.ibm.com (b03cxnp08028.gho.boulder.ibm.com [9.17.130.20]) by d03dlp02.boulder.ibm.com (Postfix) with ESMTP id CD3E43E40030 for ; Mon, 13 Jun 2016 02:19:27 -0600 (MDT) Received: from b03ledav005.gho.boulder.ibm.com (b03ledav005.gho.boulder.ibm.com [9.17.130.236]) by b03cxnp08028.gho.boulder.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u5D8JRjs37748970 for ; Mon, 13 Jun 2016 01:19:27 -0700 Received: from b03ledav005.gho.boulder.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id A8F42BE03B for ; Mon, 13 Jun 2016 02:19:27 -0600 (MDT) Received: from oc1450873852.ibm.com (unknown [9.152.224.164]) by b03ledav005.gho.boulder.ibm.com (Postfix) with ESMTP id 5225BBE03A for ; Mon, 13 Jun 2016 02:19:27 -0600 (MDT) References: <1465383765-18754-1-git-send-email-cornelia.huck@de.ibm.com> From: Christian Borntraeger Date: Mon, 13 Jun 2016 10:19:26 +0200 MIME-Version: 1.0 In-Reply-To: <1465383765-18754-1-git-send-email-cornelia.huck@de.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Message-Id: <575E6C8E.1030804@de.ibm.com> Subject: Re: [Qemu-devel] [PATCH 0/7] s390x: next batch of patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On 06/08/2016 01:02 PM, Cornelia Huck wrote: > More s390x patches, this time mostly dealing with channel I/O: > Bugfixes and cleanups, and dequeue pending interrupts after > machine checks. > > Christian Borntraeger (3): > virtio-ccw: Provide traces for indicator changes > s390x: Limit s390-ccw machines to 248 CPUs > s390x/kvm: Fixup interrupt type for non-adapter I/O interrupts > > Cornelia Huck (2): > linux-headers: update > s390x/css: introduce property type for device ids > > Halil Pasic (2): > s390x/kvm: add interface for clearing IO irqs > s390x/css: clear IO irqs when generating IPI CRW > > hw/intc/s390_flic.c | 8 ++ > hw/intc/s390_flic_kvm.c | 26 ++++++ > hw/s390x/css.c | 124 ++++++++++++++++++++++++- > hw/s390x/s390-virtio-ccw.c | 2 +- > hw/s390x/virtio-ccw.c | 80 +++++++--------- > hw/s390x/virtio-ccw.h | 2 +- > include/hw/s390x/css.h | 17 ++++ > include/hw/s390x/s390_flic.h | 2 + > include/standard-headers/linux/pci_regs.h | 20 +++- > include/standard-headers/linux/virtio_config.h | 2 + > linux-headers/asm-arm/unistd.h | 2 + > linux-headers/asm-arm64/unistd.h | 3 + > linux-headers/asm-powerpc/unistd.h | 2 + > linux-headers/asm-s390/kvm.h | 1 + > linux-headers/asm-s390/unistd.h | 4 +- > linux-headers/asm-x86/kvm.h | 6 +- > linux-headers/asm-x86/unistd_x32.h | 2 + > linux-headers/linux/kvm.h | 1 + > target-s390x/kvm.c | 5 +- > trace-events | 1 + > 20 files changed, 251 insertions(+), 59 deletions(-) > Selection looks good to me.