mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
target/s390x: filter deprecated properties based on model expansion type
Currently, there is no way to execute the query-cpu-model-expansion command to retrieve a comprehenisve list of deprecated properties, as the result is dependent per-model. To enable this, the expansion output is modified as such: When reporting a "full" CPU model, show the *entire* list of deprecated properties regardless if they are supported on the model. A full expansion outputs all known CPU model properties anyway, so it makes sense to report all deprecated properties here too. This allows management apps to query a single model (e.g. host) to acquire the full list of deprecated properties. Additionally, when reporting a "static" CPU model, the command will only show deprecated properties that are a subset of the model's *enabled* properties. This is more accurate than how the query was handled before, which blindly reported deprecated properties that were never otherwise introduced for certain models. Acked-by: David Hildenbrand <david@redhat.com> Suggested-by: Jiri Denemark <jdenemar@redhat.com> Signed-off-by: Collin Walling <walling@linux.ibm.com> Message-ID: <20240719181741.35146-1-walling@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
2d9588ad70
commit
eed0e8ffa3
2 changed files with 12 additions and 9 deletions
|
@ -21,8 +21,9 @@
|
|||
# @props: a dictionary of QOM properties to be applied
|
||||
#
|
||||
# @deprecated-props: a list of properties that are flagged as deprecated
|
||||
# by the CPU vendor. These props are a subset of the full model's
|
||||
# definition list of properties. (since 9.1)
|
||||
# by the CPU vendor. These properties are either a subset of the
|
||||
# properties enabled on the CPU model, or a set of properties
|
||||
# deprecated across all models for the architecture.
|
||||
#
|
||||
# Since: 2.8
|
||||
##
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue