From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V3nzd-0005bF-Eu for qemu-devel@nongnu.org; Mon, 29 Jul 2013 10:00:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V3nzV-00034m-JP for qemu-devel@nongnu.org; Mon, 29 Jul 2013 10:00:09 -0400 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:39579) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V3nzV-00034A-Am for qemu-devel@nongnu.org; Mon, 29 Jul 2013 10:00:01 -0400 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 29 Jul 2013 14:53:55 +0100 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 298CD1B08066 for ; Mon, 29 Jul 2013 14:59:57 +0100 (BST) Received: from d06av10.portsmouth.uk.ibm.com (d06av10.portsmouth.uk.ibm.com [9.149.37.251]) by b06cxnps4074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r6TDxjM353543124 for ; Mon, 29 Jul 2013 13:59:45 GMT Received: from d06av10.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r6TDxtrM020938 for ; Mon, 29 Jul 2013 07:59:56 -0600 From: Christian Borntraeger Date: Mon, 29 Jul 2013 16:00:10 +0200 Message-Id: <1375106418-22828-1-git-send-email-borntraeger@de.ibm.com> In-Reply-To: <1375092324-23943-1-git-send-email-agraf@suse.de> References: <1375092324-23943-1-git-send-email-agraf@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 0/8] s390 patch queue part 2 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel Developers Cc: cornelia.huck@de.ibm.com, Christian Borntraeger , aliguori@us.ibm.com, Alexander Graf , Jens Freimann Hi Anthony / Blue / Aurelien, on top of these patches, the following changes since commit 0e0259ad7425417d28a9428c4aab959dae2e35ca: s390: update s390-ccw.img (2013-07-29 11:46:10 +0200) are available in the git repository at: git://github.com/borntraeger/qemu.git s390-for-1.6 for you to fetch changes up to 3d8318cd709fd2e643cefb68ea4b1b2deeac0a95: s390: Implement dump-guest-memory support for target s390x (2013-07-29 15:49:28 +0200)i all patches have been posted to the list. Please apply for 1.6 Christian ---------------------------------------------------------------- Ekaterina Tumanova (1): s390: Implement dump-guest-memory support for target s390x Heinz Graalfs (1): s390/sclpconsole: handle char layer busy conditions Thomas Huth (6): s390x/ioinst: Add missing alignment checks for IO instructions s390x/ioinst: Throw addressing exception when memory_map failed s390x/ioinst: Fixed alignment check in SCHM instruction s390x/ioinst: Fixed priority of operand exceptions s390x/kvm: Reworked/fixed handling of cc3 in kvm_handle_css_inst() s390x/kvm: Remove redundant return code hw/char/sclpconsole.c | 18 +--- include/elf.h | 6 ++ target-s390x/Makefile.objs | 2 +- target-s390x/arch_dump.c | 212 +++++++++++++++++++++++++++++++++++++++++++++ target-s390x/cpu-qom.h | 5 ++ target-s390x/cpu.c | 2 + target-s390x/ioinst.c | 65 +++++++++----- target-s390x/kvm.c | 64 +++----------- 8 files changed, 283 insertions(+), 91 deletions(-) create mode 100644 target-s390x/arch_dump.c