diff options
author | Cho, Yu-Chen | 2021-07-07 12:53:24 +0200 |
---|---|---|
committer | Cornelia Huck | 2021-07-07 14:01:59 +0200 |
commit | 7ab3eb42b0d795f7321c4fca0ea06cb76a005b04 (patch) | |
tree | 9e305ae6d1c5d306bdf97393fa4e202c7bd24b69 /target/s390x/s390x-internal.h | |
parent | target/s390x: move kvm files into kvm/ (diff) | |
download | qemu-7ab3eb42b0d795f7321c4fca0ea06cb76a005b04.tar.gz qemu-7ab3eb42b0d795f7321c4fca0ea06cb76a005b04.tar.xz qemu-7ab3eb42b0d795f7321c4fca0ea06cb76a005b04.zip |
target/s390x: split sysemu part of cpu models
split sysemu part of cpu models,
also create a tiny _user.c with just the (at least for now),
empty implementation of apply_cpu_model.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Cho, Yu-Chen <acho@suse.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210707105324.23400-15-acho@suse.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/s390x-internal.h')
-rw-r--r-- | target/s390x/s390x-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/s390x/s390x-internal.h b/target/s390x/s390x-internal.h index 17edd4d13b..5506f185e8 100644 --- a/target/s390x/s390x-internal.h +++ b/target/s390x/s390x-internal.h @@ -261,6 +261,8 @@ static inline void s390_cpu_unhalt(S390CPU *cpu) /* cpu_models.c */ void s390_cpu_model_class_register_props(ObjectClass *oc); void s390_realize_cpu_model(CPUState *cs, Error **errp); +S390CPUModel *get_max_cpu_model(Error **errp); +void apply_cpu_model(const S390CPUModel *model, Error **errp); ObjectClass *s390_cpu_class_by_name(const char *name); |