From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42344C04AAF for ; Mon, 20 May 2019 06:43:29 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1941E206B6 for ; Mon, 20 May 2019 06:43:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1941E206B6 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([127.0.0.1]:58945 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSc1A-0008P9-C4 for qemu-devel@archiver.kernel.org; Mon, 20 May 2019 02:43:28 -0400 Received: from eggs.gnu.org ([209.51.188.92]:52954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSc0O-00085R-PM for qemu-devel@nongnu.org; Mon, 20 May 2019 02:42:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSc0N-0004cN-Vp for qemu-devel@nongnu.org; Mon, 20 May 2019 02:42:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50508) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hSc0N-0004bH-Q5; Mon, 20 May 2019 02:42:39 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AAE3230832E1; Mon, 20 May 2019 06:42:34 +0000 (UTC) Received: from gondolin (ovpn-204-110.brq.redhat.com [10.40.204.110]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6AF91600C6; Mon, 20 May 2019 06:42:27 +0000 (UTC) Date: Mon, 20 May 2019 08:42:23 +0200 From: Cornelia Huck To: Christian Borntraeger Message-ID: <20190520084223.297cf9d6.cohuck@redhat.com> In-Reply-To: <20190429090250.7648-1-borntraeger@de.ibm.com> References: <20190429090250.7648-1-borntraeger@de.ibm.com> Organization: Red Hat GmbH MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.44]); Mon, 20 May 2019 06:42:34 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: Re: [Qemu-devel] [PATCH v3 0/9] s390x: new guest features X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "Jason J . Herne" , Collin Walling , David Hildenbrand , qemu-devel , Halil Pasic , qemu-s390x , Richard Henderson Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" On Mon, 29 Apr 2019 05:02:41 -0400 Christian Borntraeger wrote: > Adding gen15. > > v2->v3: - merge deprecation patch into gen 15 patch > - fix comments > - use gen15a and gen15b instead of cpuid > v1->v2: - rework csske deprecation > - white space fixes > - also require msa4 for msa9 > > Christian Borntraeger (9): > linux header sync > s390x/cpumodel: ignore csske for expansion > s390x/cpumodel: Miscellaneous-Instruction-Extensions Facility 3 > s390x/cpumodel: msa9 facility > s390x/cpumodel: vector enhancements > s390x/cpumodel: enhanced sort facility > s390x/cpumodel: add Deflate-conversion facility > s390x/cpumodel: add gen15 defintions > s390x/cpumodel: wire up 8561 and 8562 as gen15 machines > > linux-headers/asm-s390/kvm.h | 5 +- > target/s390x/cpu_features.c | 54 ++++++++++++++++ > target/s390x/cpu_features.h | 3 + > target/s390x/cpu_features_def.h | 49 +++++++++++++++ > target/s390x/cpu_models.c | 13 ++-- > target/s390x/gen-features.c | 105 ++++++++++++++++++++++++++++++++ > target/s390x/kvm.c | 18 ++++++ > 7 files changed, 242 insertions(+), 5 deletions(-) > Thanks, queued to s390-next (with a proper header sync against 5.2-rc1).