[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH 1/7] cpu: Change return type of cpu_class_by_name()
From: |
Eduardo Habkost |
Subject: |
[qemu-s390x] [PATCH 1/7] cpu: Change return type of cpu_class_by_name() to CPUClass |
Date: |
Fri, 19 Apr 2019 03:14:23 -0300 |
The function always returns a CPU class. Change the return type
to reflect that.
I'm not changing the return type of CPUClass::class_by_name()
yet, because many of its implementations will be eliminated by
the next commits.
Signed-off-by: Eduardo Habkost <address@hidden>
---
Cc: Cornelia Huck <address@hidden>
Cc: David Hildenbrand <address@hidden>
Cc: address@hidden
Cc: Markus Armbruster <address@hidden>
---
include/qom/cpu.h | 2 +-
exec.c | 8 +++-----
qom/cpu.c | 4 ++--
target/s390x/cpu_models.c | 10 +++++-----
4 files changed, 11 insertions(+), 13 deletions(-)
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index d28c690b27..fefd5c26b0 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -676,7 +676,7 @@ void cpu_reset(CPUState *cpu);
*
* Returns: A #CPUClass or %NULL if not matching class is found.
*/
-ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
+CPUClass *cpu_class_by_name(const char *typename, const char *cpu_model);
/**
* cpu_create:
diff --git a/exec.c b/exec.c
index efb1616ece..d303ac5f25 100644
--- a/exec.c
+++ b/exec.c
@@ -984,7 +984,6 @@ void cpu_exec_realizefn(CPUState *cpu, Error **errp)
const char *parse_cpu_option(const char *cpu_option)
{
- ObjectClass *oc;
CPUClass *cc;
gchar **model_pieces;
const char *cpu_type;
@@ -995,15 +994,14 @@ const char *parse_cpu_option(const char *cpu_option)
exit(1);
}
- oc = cpu_class_by_name(CPU_RESOLVING_TYPE, model_pieces[0]);
- if (oc == NULL) {
+ cc = cpu_class_by_name(CPU_RESOLVING_TYPE, model_pieces[0]);
+ if (cc == NULL) {
error_report("unable to find CPU model '%s'", model_pieces[0]);
g_strfreev(model_pieces);
exit(EXIT_FAILURE);
}
- cpu_type = object_class_get_name(oc);
- cc = CPU_CLASS(oc);
+ cpu_type = object_class_get_name(OBJECT_CLASS(cc));
cc->parse_features(cpu_type, model_pieces[1], &error_fatal);
g_strfreev(model_pieces);
return cpu_type;
diff --git a/qom/cpu.c b/qom/cpu.c
index a8d2958956..b971a56242 100644
--- a/qom/cpu.c
+++ b/qom/cpu.c
@@ -283,12 +283,12 @@ static bool cpu_common_has_work(CPUState *cs)
return false;
}
-ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model)
+CPUClass *cpu_class_by_name(const char *typename, const char *cpu_model)
{
CPUClass *cc = CPU_CLASS(object_class_by_name(typename));
assert(cpu_model && cc->class_by_name);
- return cc->class_by_name(cpu_model);
+ return CPU_CLASS(cc->class_by_name(cpu_model));
}
static void cpu_common_parse_features(const char *typename, char *features,
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
index eb125d4d0d..391698595f 100644
--- a/target/s390x/cpu_models.c
+++ b/target/s390x/cpu_models.c
@@ -482,7 +482,7 @@ static void cpu_model_from_info(S390CPUModel *model, const
CpuModelInfo *info,
const QDict *qdict = NULL;
const QDictEntry *e;
Visitor *visitor;
- ObjectClass *oc;
+ CPUClass *cc;
S390CPU *cpu;
Object *obj;
@@ -494,16 +494,16 @@ static void cpu_model_from_info(S390CPUModel *model,
const CpuModelInfo *info,
}
}
- oc = cpu_class_by_name(TYPE_S390_CPU, info->name);
- if (!oc) {
+ cc = cpu_class_by_name(TYPE_S390_CPU, info->name);
+ if (!cc) {
error_setg(errp, "The CPU definition \'%s\' is unknown.", info->name);
return;
}
- if (S390_CPU_CLASS(oc)->kvm_required && !kvm_enabled()) {
+ if (S390_CPU_CLASS(cc)->kvm_required && !kvm_enabled()) {
error_setg(errp, "The CPU definition '%s' requires KVM", info->name);
return;
}
- obj = object_new(object_class_get_name(oc));
+ obj = object_new(object_class_get_name(OBJECT_CLASS(cc)));
cpu = S390_CPU(obj);
if (!cpu->model) {
--
2.18.0.rc1.1.g3f1ff2140
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [qemu-s390x] [PATCH 1/7] cpu: Change return type of cpu_class_by_name() to CPUClass,
Eduardo Habkost <=