mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 02:14:24 +00:00
target-i386: Pass X86CPU object to cpu_x86_find_by_name()
This will help us change the initialization code to not require carrying some intermediate values in a x86_def_t struct (and eventually kill the x86_def_t struct entirely). Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
14a10fc399
commit
c139911261
@ -1475,7 +1475,8 @@ static void x86_cpu_get_feature_words(Object *obj, Visitor *v, void *opaque,
|
|||||||
error_propagate(errp, err);
|
error_propagate(errp, err);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *name)
|
static int cpu_x86_find_by_name(X86CPU *cpu, x86_def_t *x86_cpu_def,
|
||||||
|
const char *name)
|
||||||
{
|
{
|
||||||
x86_def_t *def;
|
x86_def_t *def;
|
||||||
int i;
|
int i;
|
||||||
@ -1742,7 +1743,7 @@ static void cpu_x86_register(X86CPU *cpu, const char *name, Error **errp)
|
|||||||
|
|
||||||
memset(def, 0, sizeof(*def));
|
memset(def, 0, sizeof(*def));
|
||||||
|
|
||||||
if (cpu_x86_find_by_name(def, name) < 0) {
|
if (cpu_x86_find_by_name(cpu, def, name) < 0) {
|
||||||
error_setg(errp, "Unable to find CPU definition: %s", name);
|
error_setg(errp, "Unable to find CPU definition: %s", name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user