From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49539) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMEr3-0002mK-FJ for qemu-devel@nongnu.org; Wed, 18 Sep 2013 06:19:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VMEqq-0008Vf-SG for qemu-devel@nongnu.org; Wed, 18 Sep 2013 06:19:29 -0400 Received: from e06smtp13.uk.ibm.com ([195.75.94.109]:51020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMEqq-0008Tl-Ip for qemu-devel@nongnu.org; Wed, 18 Sep 2013 06:19:16 -0400 Received: from /spool/local by e06smtp13.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 18 Sep 2013 11:19:14 +0100 Received: from b06cxnps3075.portsmouth.uk.ibm.com (d06relay10.portsmouth.uk.ibm.com [9.149.109.195]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 68C3717D8063 for ; Wed, 18 Sep 2013 11:19:22 +0100 (BST) Received: from d06av12.portsmouth.uk.ibm.com (d06av12.portsmouth.uk.ibm.com [9.149.37.247]) by b06cxnps3075.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r8IAIxAE64553204 for ; Wed, 18 Sep 2013 10:18:59 GMT Received: from d06av12.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av12.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r8IAJAPi001116 for ; Wed, 18 Sep 2013 04:19:11 -0600 From: Christian Borntraeger Date: Wed, 18 Sep 2013 12:19:21 +0200 Message-Id: <1379499572-49737-1-git-send-email-borntraeger@de.ibm.com> Subject: [Qemu-devel] [PATCH 00/11] sclp related fixes and sclp line mode console List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: Christian Borntraeger , Jens Freimann , Heinz Graalfs , qemu-devel Alex, here is a bunch of fixes/changes for sclp/eventfacility followed by a move of the ebcdic conversion into a stand-alone header file and the sclp line mode console. Christian Borntraeger (3): s390/eventfacility: Fix receive/send masks s390/eventfacility: remove unused event_type variable s390/eventfacility: allow childs to handle more than 1 event type Heinz Graalfs (7): s390/sclpconsole: modify definition of input buffer s390/sclpconsole: Add code to support live migration for sclpconsole s390/sclpquiesce: Add code to support live migration s390/event-facility: Add code to support live migration s390/sclp: add reset() functions s390/ebcdic: Move conversion tables to header file s390/sclplmconsole: Add support for SCLP line-mode console Ralf Hoppe (1): s390/eventfacility: fix multiple Read Event Data sources hw/char/Makefile.objs | 2 +- hw/char/sclpconsole-lm.c | 393 ++++++++++++++++++++++++++++++++++++++ hw/char/sclpconsole.c | 89 ++++----- hw/s390x/event-facility.c | 30 ++- hw/s390x/sclpquiesce.c | 30 ++- include/hw/s390x/ebcdic.h | 107 +++++++++++ include/hw/s390x/event-facility.h | 86 ++++++++- target-s390x/misc_helper.c | 81 +------- 8 files changed, 678 insertions(+), 140 deletions(-) create mode 100644 hw/char/sclpconsole-lm.c create mode 100644 include/hw/s390x/ebcdic.h -- 1.8.3.1