diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2019-04-29 05:02:43 -0400 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2019-05-21 16:59:16 +0200 |
commit | eaf6f642abf1d4d24791b70728d4068428fc4658 (patch) | |
tree | d91d7cb4fca074cd915ccb99f1278c21caec4775 | |
parent | d9cb4336159a00bd0d9c81b93f02874ef3626057 (diff) | |
download | qemu-eaf6f642abf1d4d24791b70728d4068428fc4658.zip |
s390x/cpumodel: ignore csske for expansion
csske will be removed in a future machine. Ignore it for expanding the
cpu model. Otherwise qemu falls back to z9.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: qemu-stable@nongnu.org
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-Id: <20190429090250.7648-3-borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
-rw-r--r-- | target/s390x/cpu_models.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c index e5afa15512..b4bb5de635 100644 --- a/target/s390x/cpu_models.c +++ b/target/s390x/cpu_models.c @@ -1322,6 +1322,8 @@ static void init_ignored_base_feat(void) S390_FEAT_KM_TDEA_192, S390_FEAT_KIMD_SHA_1, S390_FEAT_KLMD_SHA_1, + /* CSSKE is deprecated on newer generations */ + S390_FEAT_CONDITIONAL_SSKE, }; int i; |