|
|
b38b0f |
From 5bb9f99d9dbe71424f656f597b650d5088faca23 Mon Sep 17 00:00:00 2001
|
|
|
b38b0f |
From: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
Date: Fri, 29 Mar 2019 11:13:35 +0000
|
|
|
b38b0f |
Subject: [PATCH 1/7] s390x/cpumodel: mepochptff: warn when no mepoch and
|
|
|
b38b0f |
re-align group init
|
|
|
b38b0f |
|
|
|
b38b0f |
RH-Author: Thomas Huth <thuth@redhat.com>
|
|
|
b38b0f |
Message-id: <1553858017-376-2-git-send-email-thuth@redhat.com>
|
|
|
b38b0f |
Patchwork-id: 85237
|
|
|
b38b0f |
O-Subject: [RHEL-8.1.0 qemu-kvm PATCH 1/3] s390x/cpumodel: mepochptff: warn when no mepoch and re-align group init
|
|
|
b38b0f |
Bugzilla: 1664371
|
|
|
b38b0f |
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
|
|
b38b0f |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
b38b0f |
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
|
|
|
b38b0f |
|
|
|
b38b0f |
From: Collin Walling <walling@linux.ibm.com>
|
|
|
b38b0f |
|
|
|
b38b0f |
The extended PTFF features (qsie, qtoue, stoe, stoue) are dependent
|
|
|
b38b0f |
on the multiple-epoch facility (mepoch). Let's print a warning if these
|
|
|
b38b0f |
features are enabled without mepoch.
|
|
|
b38b0f |
|
|
|
b38b0f |
While we're at it, let's move the FEAT_GROUP_INIT for mepochptff down
|
|
|
b38b0f |
the s390_feature_groups list so it can be properly indexed with its
|
|
|
b38b0f |
generated S390FeatGroup enum.
|
|
|
b38b0f |
|
|
|
b38b0f |
Signed-off-by: Collin Walling <walling@linux.ibm.com>
|
|
|
b38b0f |
Message-Id: <20190212011657.18324-1-walling@linux.ibm.com>
|
|
|
b38b0f |
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
|
|
|
b38b0f |
Reviewed-by: David Hildenbrand <david@redhat.com>
|
|
|
b38b0f |
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
b38b0f |
(cherry picked from commit ddf5d18af3ce3029d5b93222af5a9e8160d4c34b)
|
|
|
b38b0f |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
b38b0f |
---
|
|
|
b38b0f |
target/s390x/cpu_features.c | 2 +-
|
|
|
b38b0f |
target/s390x/cpu_models.c | 4 ++++
|
|
|
b38b0f |
2 files changed, 5 insertions(+), 1 deletion(-)
|
|
|
b38b0f |
|
|
|
b38b0f |
diff --git a/target/s390x/cpu_features.c b/target/s390x/cpu_features.c
|
|
|
b38b0f |
index 0fbee27..91e40c2 100644
|
|
|
b38b0f |
--- a/target/s390x/cpu_features.c
|
|
|
b38b0f |
+++ b/target/s390x/cpu_features.c
|
|
|
b38b0f |
@@ -457,7 +457,6 @@ static S390FeatGroupDef s390_feature_groups[] = {
|
|
|
b38b0f |
FEAT_GROUP_INIT("plo", PLO, "Perform-locked-operation facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("tods", TOD_CLOCK_STEERING, "Tod-clock-steering facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("gen13ptff", GEN13_PTFF, "PTFF enhancements introduced with z13"),
|
|
|
b38b0f |
- FEAT_GROUP_INIT("mepochptff", MULTIPLE_EPOCH_PTFF, "PTFF enhancements introduced with Multiple-epoch facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("msa", MSA, "Message-security-assist facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("msa1", MSA_EXT_1, "Message-security-assist-extension 1 facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("msa2", MSA_EXT_2, "Message-security-assist-extension 2 facility"),
|
|
|
b38b0f |
@@ -467,6 +466,7 @@ static S390FeatGroupDef s390_feature_groups[] = {
|
|
|
b38b0f |
FEAT_GROUP_INIT("msa6", MSA_EXT_6, "Message-security-assist-extension 6 facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("msa7", MSA_EXT_7, "Message-security-assist-extension 7 facility"),
|
|
|
b38b0f |
FEAT_GROUP_INIT("msa8", MSA_EXT_8, "Message-security-assist-extension 8 facility"),
|
|
|
b38b0f |
+ FEAT_GROUP_INIT("mepochptff", MULTIPLE_EPOCH_PTFF, "PTFF enhancements introduced with Multiple-epoch facility"),
|
|
|
b38b0f |
};
|
|
|
b38b0f |
|
|
|
b38b0f |
const S390FeatGroupDef *s390_feat_group_def(S390FeatGroup group)
|
|
|
b38b0f |
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
|
|
|
b38b0f |
index 3856104..43f16a7 100644
|
|
|
b38b0f |
--- a/target/s390x/cpu_models.c
|
|
|
b38b0f |
+++ b/target/s390x/cpu_models.c
|
|
|
b38b0f |
@@ -776,6 +776,10 @@ static void check_consistency(const S390CPUModel *model)
|
|
|
b38b0f |
{ S390_FEAT_SIE_KSS, S390_FEAT_SIE_F2 },
|
|
|
b38b0f |
{ S390_FEAT_AP_QUERY_CONFIG_INFO, S390_FEAT_AP },
|
|
|
b38b0f |
{ S390_FEAT_AP_FACILITIES_TEST, S390_FEAT_AP },
|
|
|
b38b0f |
+ { S390_FEAT_PTFF_QSIE, S390_FEAT_MULTIPLE_EPOCH },
|
|
|
b38b0f |
+ { S390_FEAT_PTFF_QTOUE, S390_FEAT_MULTIPLE_EPOCH },
|
|
|
b38b0f |
+ { S390_FEAT_PTFF_STOE, S390_FEAT_MULTIPLE_EPOCH },
|
|
|
b38b0f |
+ { S390_FEAT_PTFF_STOUE, S390_FEAT_MULTIPLE_EPOCH },
|
|
|
b38b0f |
};
|
|
|
b38b0f |
int i;
|
|
|
b38b0f |
|
|
|
b38b0f |
--
|
|
|
b38b0f |
1.8.3.1
|
|
|
b38b0f |
|