From: Jiri Denemark Date: Fri, 5 Jan 2018 16:43:03 +0000 (+0100) Subject: cpu_x86: Copy CPU signature from ancestor X-Git-Tag: v4.0.0-rc1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b427cf4831d0ea7aac9dd1a3aa7682478356a483;p=thirdparty%2Flibvirt.git cpu_x86: Copy CPU signature from ancestor When specifying a new CPU model in cpu_map.xml as an extension to an existing model, we forgot to copy the signature (family + model) from the original CPU model. We don't use this way of specifying CPU models, but it's still supported and it becomes useful when someone wants to quickly hack up a CPU model for testing or when creating additional variants of existing models to help with fixing some spectral issues. Signed-off-by: Jiri Denemark Reviewed-by: Pavel Hrdina --- diff --git a/src/cpu/cpu_x86.c b/src/cpu/cpu_x86.c index 2a2f7cbf39..b2398c5ad2 100644 --- a/src/cpu/cpu_x86.c +++ b/src/cpu/cpu_x86.c @@ -1227,6 +1227,7 @@ x86ModelParse(xmlXPathContextPtr ctxt, VIR_FREE(name); model->vendor = ancestor->vendor; + model->signature = ancestor->signature; if (x86DataCopy(&model->data, &ancestor->data) < 0) goto error; }