mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-27 07:22:07 +03:00
cpu_x86: Fix placement of *CheckFeature functions
Commit 0a97486e09
moved them outside #ifdef, but after virCPUx86GetHost,
which will start calling them in the following patch.
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
c277b9ad5c
commit
32f577ab10
@ -2378,6 +2378,41 @@ x86Encode(virArch arch,
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
virCPUx86CheckFeature(const virCPUDef *cpu,
|
||||
const char *name)
|
||||
{
|
||||
int ret = -1;
|
||||
virCPUx86MapPtr map;
|
||||
virCPUx86ModelPtr model = NULL;
|
||||
|
||||
if (!(map = virCPUx86GetMap()))
|
||||
return -1;
|
||||
|
||||
if (!(model = x86ModelFromCPU(cpu, map, -1)))
|
||||
goto cleanup;
|
||||
|
||||
ret = x86FeatureInData(name, &model->data, map);
|
||||
|
||||
cleanup:
|
||||
x86ModelFree(model);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
virCPUx86DataCheckFeature(const virCPUData *data,
|
||||
const char *name)
|
||||
{
|
||||
virCPUx86MapPtr map;
|
||||
|
||||
if (!(map = virCPUx86GetMap()))
|
||||
return -1;
|
||||
|
||||
return x86FeatureInData(name, &data->data.x86, map);
|
||||
}
|
||||
|
||||
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
static inline void
|
||||
cpuidCall(virCPUx86CPUID *cpuid)
|
||||
@ -2734,41 +2769,6 @@ virCPUx86GetHost(virCPUDefPtr cpu,
|
||||
#endif
|
||||
|
||||
|
||||
static int
|
||||
virCPUx86CheckFeature(const virCPUDef *cpu,
|
||||
const char *name)
|
||||
{
|
||||
int ret = -1;
|
||||
virCPUx86MapPtr map;
|
||||
virCPUx86ModelPtr model = NULL;
|
||||
|
||||
if (!(map = virCPUx86GetMap()))
|
||||
return -1;
|
||||
|
||||
if (!(model = x86ModelFromCPU(cpu, map, -1)))
|
||||
goto cleanup;
|
||||
|
||||
ret = x86FeatureInData(name, &model->data, map);
|
||||
|
||||
cleanup:
|
||||
x86ModelFree(model);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
virCPUx86DataCheckFeature(const virCPUData *data,
|
||||
const char *name)
|
||||
{
|
||||
virCPUx86MapPtr map;
|
||||
|
||||
if (!(map = virCPUx86GetMap()))
|
||||
return -1;
|
||||
|
||||
return x86FeatureInData(name, &data->data.x86, map);
|
||||
}
|
||||
|
||||
|
||||
static virCPUDefPtr
|
||||
virCPUx86Baseline(virCPUDefPtr *cpus,
|
||||
unsigned int ncpus,
|
||||
|
Loading…
Reference in New Issue
Block a user