|
|
550fc5 |
From f2ac185797ae7e260a99dae91a6a9adf89538d49 Mon Sep 17 00:00:00 2001
|
|
|
550fc5 |
From: David Hildenbrand <david@redhat.com>
|
|
|
550fc5 |
Date: Thu, 13 Jun 2019 08:07:26 +0200
|
|
|
550fc5 |
Subject: [PATCH] s390x/cpumodel: ignore csske for expansion
|
|
|
550fc5 |
|
|
|
550fc5 |
RH-Author: David Hildenbrand <david@redhat.com>
|
|
|
550fc5 |
Message-id: <20190613080726.13089-1-david@redhat.com>
|
|
|
550fc5 |
Patchwork-id: 88658
|
|
|
550fc5 |
O-Subject: [RHEL-7.6.z qemu-kvm-ma PATCH] s390x/cpumodel: ignore csske for expansion
|
|
|
550fc5 |
Bugzilla: 1720262
|
|
|
550fc5 |
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
|
|
|
550fc5 |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
550fc5 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
550fc5 |
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
550fc5 |
|
|
|
550fc5 |
csske will be removed in a future machine. Ignore it for expanding the
|
|
|
550fc5 |
cpu model. Otherwise qemu falls back to z9.
|
|
|
550fc5 |
|
|
|
550fc5 |
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
|
|
|
550fc5 |
Cc: qemu-stable@nongnu.org
|
|
|
550fc5 |
Reviewed-by: David Hildenbrand <david@redhat.com>
|
|
|
550fc5 |
Message-Id: <20190429090250.7648-3-borntraeger@de.ibm.com>
|
|
|
550fc5 |
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
550fc5 |
(cherry picked from commit eaf6f642abf1d4d24791b70728d4068428fc4658)
|
|
|
550fc5 |
Signed-off-by: David Hildenbrand <david@redhat.com>
|
|
|
550fc5 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
550fc5 |
---
|
|
|
550fc5 |
target/s390x/cpu_models.c | 2 ++
|
|
|
550fc5 |
1 file changed, 2 insertions(+)
|
|
|
550fc5 |
|
|
|
550fc5 |
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
|
|
|
550fc5 |
index 0b5d271..ed06498 100644
|
|
|
550fc5 |
--- a/target/s390x/cpu_models.c
|
|
|
550fc5 |
+++ b/target/s390x/cpu_models.c
|
|
|
550fc5 |
@@ -1259,6 +1259,8 @@ static void init_ignored_base_feat(void)
|
|
|
550fc5 |
S390_FEAT_KM_TDEA_192,
|
|
|
550fc5 |
S390_FEAT_KIMD_SHA_1,
|
|
|
550fc5 |
S390_FEAT_KLMD_SHA_1,
|
|
|
550fc5 |
+ /* CSSKE is deprecated on newer generations */
|
|
|
550fc5 |
+ S390_FEAT_CONDITIONAL_SSKE,
|
|
|
550fc5 |
};
|
|
|
550fc5 |
int i;
|
|
|
550fc5 |
|
|
|
550fc5 |
--
|
|
|
550fc5 |
1.8.3.1
|
|
|
550fc5 |
|