| Submitter | Alexander Graf |
|---|---|
| Date | Oct. 29, 2012, 6:38 p.m. |
| Message ID | <1351535917-27487-1-git-send-email-agraf@suse.de> |
| Download | mbox |
| Permalink | /patch/195111/ |
| State | New |
| Headers | show
Return-Path: <qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org> X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1E1782C008F for <incoming@patchwork.ozlabs.org>; Tue, 30 Oct 2012 05:40:24 +1100 (EST) Received: from localhost ([::1]:39017 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>) id 1TSuG5-0004sb-IZ for incoming@patchwork.ozlabs.org; Mon, 29 Oct 2012 14:40:21 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44682) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <agraf@suse.de>) id 1TSuFj-0004ZP-Lw for qemu-devel@nongnu.org; Mon, 29 Oct 2012 14:40:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <agraf@suse.de>) id 1TSuFd-0007P1-PI for qemu-devel@nongnu.org; Mon, 29 Oct 2012 14:39:59 -0400 Received: from cantor2.suse.de ([195.135.220.15]:45526 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <agraf@suse.de>) id 1TSuFd-0007Of-Id for qemu-devel@nongnu.org; Mon, 29 Oct 2012 14:39:53 -0400 Received: from relay2.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 51CD4A0FF5; Mon, 29 Oct 2012 19:39:52 +0100 (CET) From: Alexander Graf <agraf@suse.de> To: qemu-devel qemu-devel <qemu-devel@nongnu.org> Date: Mon, 29 Oct 2012 19:38:30 +0100 Message-Id: <1351535917-27487-1-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: Blue Swirl <blauwirbel@gmail.com>, Aurelien Jarno <aurelien@aurel32.net> Subject: [Qemu-devel] [PULL 0/7] s390 patch queue 2012-10-29 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: <qemu-devel.nongnu.org> List-Unsubscribe: <https://lists.nongnu.org/mailman/options/qemu-devel>, <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe> List-Archive: <http://lists.nongnu.org/archive/html/qemu-devel> List-Post: <mailto:qemu-devel@nongnu.org> List-Help: <mailto:qemu-devel-request@nongnu.org?subject=help> List-Subscribe: <https://lists.nongnu.org/mailman/listinfo/qemu-devel>, <mailto:qemu-devel-request@nongnu.org?subject=subscribe> Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org |
Hi Blue / Aurelien, This is my current patch queue for s390. Please pull. Alex The following changes since commit b308c82cbda44e138ef990af64d44a5613c16092: Avi Kivity (1): pci: avoid destroying bridge address space windows in a transaction are available in the git repository at: git://repo.or.cz/qemu/agraf.git s390-for-upstream Alexander Graf (1): s390x: fix -initrd in virtio machine Christian Borntraeger (1): s390: use sync regs for register transfer Heinz Graalfs (5): s390/kvm_stat: correct sys_perf_event_open syscall number s390: sclp base support s390: sclp event support s390: sclp signal quiesce support s390: sclp ascii console support hw/s390-virtio.c | 6 +- hw/s390x/Makefile.objs | 3 + hw/s390x/event-facility.c | 398 ++++++++++++++++++++++++++++++++++++++++++++ hw/s390x/event-facility.h | 96 +++++++++++ hw/s390x/sclp.c | 163 ++++++++++++++++++ hw/s390x/sclp.h | 118 +++++++++++++ hw/s390x/sclpconsole.c | 306 ++++++++++++++++++++++++++++++++++ hw/s390x/sclpquiesce.c | 123 ++++++++++++++ scripts/kvm/kvm_stat | 11 +- target-s390x/cpu.h | 13 +-- target-s390x/kvm.c | 117 ++++++++++--- target-s390x/misc_helper.c | 45 +----- 12 files changed, 1315 insertions(+), 84 deletions(-) create mode 100644 hw/s390x/event-facility.c create mode 100644 hw/s390x/event-facility.h create mode 100644 hw/s390x/sclp.c create mode 100644 hw/s390x/sclp.h create mode 100644 hw/s390x/sclpconsole.c create mode 100644 hw/s390x/sclpquiesce.c