diff options
| author | Collin Walling <walling@linux.ibm.com> | 2024-04-29 15:10:59 -0400 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-05-10 08:34:29 +0200 |
| commit | 6e55b32d45976a8e78cbd3bbdf6ed1148cb2662a (patch) | |
| tree | 53c51e73386954f3eb5428342b6b099c18931993 | |
| parent | 8aa2211e855df79ddd363e5f0d8c4d7d4c376e16 (diff) | |
| download | focaccia-qemu-6e55b32d45976a8e78cbd3bbdf6ed1148cb2662a.tar.gz focaccia-qemu-6e55b32d45976a8e78cbd3bbdf6ed1148cb2662a.zip | |
target/s390x: flag te and cte as deprecated
Add the CONSTRAINT_TRANSACTIONAL_EXE (cte) and TRANSACTIONAL_EXE (te) to the list of deprecated features. Signed-off-by: Collin Walling <walling@linux.ibm.com> Reviewed-by: David Hildenbrand <david@redhat.com> Message-ID: <20240429191059.11806-3-walling@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
| -rw-r--r-- | target/s390x/cpu_features.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/s390x/cpu_features.c b/target/s390x/cpu_features.c index efafc9711c..cb4e2b8920 100644 --- a/target/s390x/cpu_features.c +++ b/target/s390x/cpu_features.c @@ -218,6 +218,9 @@ void s390_get_deprecated_features(S390FeatBitmap features) /* CSSKE is deprecated on newer generations */ S390_FEAT_CONDITIONAL_SSKE, S390_FEAT_BPB, + /* Deprecated on z16 */ + S390_FEAT_CONSTRAINT_TRANSACTIONAL_EXE, + S390_FEAT_TRANSACTIONAL_EXE }; int i; |