提交 2a2ce08a 编写于 作者: J Jiri Denemark

cpu: Make models array in virCPUTranslate constant

The API doesn't change the array so let's make it constant.
Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
上级 adf44c7b
......@@ -896,7 +896,7 @@ virCPUGetModels(virArch arch, char ***models)
int
virCPUTranslate(virArch arch,
virCPUDefPtr cpu,
char **models,
const char **models,
unsigned int nmodels)
{
struct cpuArchDriver *driver;
......@@ -911,7 +911,7 @@ virCPUTranslate(virArch arch,
cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH)
return 0;
if (virCPUModelIsAllowed(cpu->model, (const char **) models, nmodels))
if (virCPUModelIsAllowed(cpu->model, models, nmodels))
return 0;
if (cpu->fallback != VIR_CPU_FALLBACK_ALLOW) {
......@@ -928,7 +928,7 @@ virCPUTranslate(virArch arch,
return -1;
}
if (driver->translate(cpu, (const char **) models, nmodels) < 0)
if (driver->translate(cpu, models, nmodels) < 0)
return -1;
VIR_DEBUG("model=%s", NULLSTR(cpu->model));
......
......@@ -225,7 +225,7 @@ virCPUGetModels(virArch arch, char ***models);
int
virCPUTranslate(virArch arch,
virCPUDefPtr cpu,
char **models,
const char **models,
unsigned int nmodels)
ATTRIBUTE_NONNULL(2);
......
......@@ -5083,7 +5083,8 @@ qemuProcessUpdateGuestCPU(virDomainDefPtr def,
goto cleanup;
if (virQEMUCapsGetCPUDefinitions(qemuCaps, &models, &nmodels) < 0 ||
virCPUTranslate(def->os.arch, def->cpu, models, nmodels) < 0)
virCPUTranslate(def->os.arch, def->cpu,
(const char **) models, nmodels) < 0)
goto cleanup;
def->cpu->fallback = VIR_CPU_FALLBACK_FORBID;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册