diff options
author | Thomas Huth <thuth@redhat.com> | 2025-05-06 08:21:43 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-05-14 06:56:19 +0200 |
commit | edce9fe075fac9f8189829a040e760f8c301a012 (patch) | |
tree | 4d57686c3675ec45ec54dbfbae5e7718ca4c4349 | |
parent | b80fadee690f9eef193e4ad4113ee2f2265ac174 (diff) | |
download | qemu-edce9fe075fac9f8189829a040e760f8c301a012.zip qemu-edce9fe075fac9f8189829a040e760f8c301a012.tar.gz qemu-edce9fe075fac9f8189829a040e760f8c301a012.tar.bz2 |
target/s390x: Rename the qemu_V2_11 feature set to qemu_MIN
Now that the v2.11 machine type has been removed, it does not make
sense to keep the qemu_V2_11 feature set around. This is rather
the (minimum) feature set of the oldest supported machine now, so
rename it to qemu_MIN.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20250506062148.306084-5-thuth@redhat.com>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | target/s390x/gen-features.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/s390x/gen-features.c b/target/s390x/gen-features.c index 4184067..754fc84 100644 --- a/target/s390x/gen-features.c +++ b/target/s390x/gen-features.c @@ -844,7 +844,8 @@ static uint16_t default_GEN17_GA1[] = { /* QEMU (CPU model) features */ -static uint16_t qemu_V2_11[] = { +static uint16_t qemu_MIN[] = { + /* Features supported by the default CPU of the oldest machine type */ S390_FEAT_GROUP_PLO, S390_FEAT_ESAN3, S390_FEAT_ZARCH, @@ -1053,7 +1054,7 @@ static FeatGroupDefSpec FeatGroupDef[] = { * QEMU (CPU model) features *******************************/ static FeatGroupDefSpec QemuFeatDef[] = { - QEMU_FEAT_INITIALIZER(V2_11), + QEMU_FEAT_INITIALIZER(MIN), QEMU_FEAT_INITIALIZER(V3_1), QEMU_FEAT_INITIALIZER(V4_0), QEMU_FEAT_INITIALIZER(V4_1), |