Revisión | eaf6f642abf1d4d24791b70728d4068428fc4658 (tree) |
---|---|
Tiempo | 2019-05-21 23:59:16 |
Autor | Christian Borntraeger <borntraeger@de.i...> |
Commiter | Cornelia Huck |
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>
@@ -1322,6 +1322,8 @@ static void init_ignored_base_feat(void) | ||
1322 | 1322 | S390_FEAT_KM_TDEA_192, |
1323 | 1323 | S390_FEAT_KIMD_SHA_1, |
1324 | 1324 | S390_FEAT_KLMD_SHA_1, |
1325 | + /* CSSKE is deprecated on newer generations */ | |
1326 | + S390_FEAT_CONDITIONAL_SSKE, | |
1325 | 1327 | }; |
1326 | 1328 | int i; |
1327 | 1329 |