|
|
b38b0f |
From bd0e218dc19724fb4c61d259601d116113f114a5 Mon Sep 17 00:00:00 2001
|
|
|
b38b0f |
From: David Hildenbrand <david@redhat.com>
|
|
|
b38b0f |
Date: Tue, 16 Jul 2019 20:44:19 +0100
|
|
|
b38b0f |
Subject: [PATCH 17/39] s390: cpumodel: fix description for the new vector
|
|
|
b38b0f |
facility
|
|
|
b38b0f |
|
|
|
b38b0f |
RH-Author: David Hildenbrand <david@redhat.com>
|
|
|
b38b0f |
Message-id: <20190716204422.9350-2-david@redhat.com>
|
|
|
b38b0f |
Patchwork-id: 89547
|
|
|
b38b0f |
O-Subject: [RHEL8.1 qemu-kvm PATCH 1/4] s390: cpumodel: fix description for the new vector facility
|
|
|
b38b0f |
Bugzilla: 1729975
|
|
|
b38b0f |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
b38b0f |
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
|
|
|
b38b0f |
|
|
|
b38b0f |
Conflicts: upstream moved the definitions
|
|
|
b38b0f |
|
|
|
b38b0f |
The new facility is called "Vector-Packed-Decimal-Enhancement Facility"
|
|
|
b38b0f |
and not "Vector BCD enhancements facility 1". As the shortname might
|
|
|
b38b0f |
have already found its way into some backports, let's keep vxbeh.
|
|
|
b38b0f |
|
|
|
b38b0f |
Fixes: 54d65de0b525 ("s390x/cpumodel: vector enhancements")
|
|
|
b38b0f |
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
|
|
|
b38b0f |
Message-Id: <20190708150931.93448-1-borntraeger@de.ibm.com>
|
|
|
b38b0f |
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
b38b0f |
(cherry picked from commit d05be57ddc2e1722f527aa4c20d84dfd15c840ec)
|
|
|
b38b0f |
Signed-off-by: David Hildenbrand <david@redhat.com>
|
|
|
b38b0f |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
b38b0f |
---
|
|
|
b38b0f |
target/s390x/cpu_features.c | 2 +-
|
|
|
b38b0f |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
b38b0f |
|
|
|
b38b0f |
diff --git a/target/s390x/cpu_features.c b/target/s390x/cpu_features.c
|
|
|
b38b0f |
index f64f581..5be6f59 100644
|
|
|
b38b0f |
--- a/target/s390x/cpu_features.c
|
|
|
b38b0f |
+++ b/target/s390x/cpu_features.c
|
|
|
b38b0f |
@@ -111,7 +111,7 @@ static const S390FeatDef s390_features[] = {
|
|
|
b38b0f |
FEAT_INIT("vxeh2", S390_FEAT_TYPE_STFL, 148, "Vector Enhancements facility 2"),
|
|
|
b38b0f |
FEAT_INIT("esort-base", S390_FEAT_TYPE_STFL, 150, "Enhanced-sort facility (excluding subfunctions)"),
|
|
|
b38b0f |
FEAT_INIT("deflate-base", S390_FEAT_TYPE_STFL, 151, "Deflate-conversion facility (excluding subfunctions)"),
|
|
|
b38b0f |
- FEAT_INIT("vxbeh", S390_FEAT_TYPE_STFL, 152, "Vector BCD enhancements facility 1"),
|
|
|
b38b0f |
+ FEAT_INIT("vxbeh", S390_FEAT_TYPE_STFL, 152, "Vector-Packed-Decimal-Enhancement Facility"),
|
|
|
b38b0f |
FEAT_INIT("msa9-base", S390_FEAT_TYPE_STFL, 155, "Message-security-assist-extension-9 facility (excluding subfunctions)"),
|
|
|
b38b0f |
FEAT_INIT("etoken", S390_FEAT_TYPE_STFL, 156, "Etoken facility"),
|
|
|
b38b0f |
|
|
|
b38b0f |
--
|
|
|
b38b0f |
1.8.3.1
|
|
|
b38b0f |
|