On 08/12/2016 09:33 AM, Jiri Denemark wrote:
The function moves CPU model related parts from one CPU definition
to
another. It can be used to avoid unnecessary copies from a temporary CPU
definitions which will be freed anyway.
Signed-off-by: Jiri Denemark <jdenemar(a)redhat.com>
---
src/conf/cpu_conf.c | 17 +++++++++++++++++
src/conf/cpu_conf.h | 4 ++++
src/libvirt_private.syms | 1 +
3 files changed, 22 insertions(+)
Less "Move" and more "Take"... virCPUDefStealModel is a suggestion -
of
course it's more than ->model, but close enough I think.
diff --git a/src/conf/cpu_conf.c b/src/conf/cpu_conf.c
index c6e847a..13f3da3 100644
--- a/src/conf/cpu_conf.c
+++ b/src/conf/cpu_conf.c
@@ -115,6 +115,23 @@ virCPUDefCopyModel(virCPUDefPtr dst,
}
+void
+virCPUDefMoveModel(virCPUDefPtr dst,
+ virCPUDefPtr src)
+{
+ virCPUDefFreeModel(dst);
+
+ VIR_STEAL_PTR(dst->model, src->model);
+ VIR_STEAL_PTR(dst->vendor, src->vendor);
+ VIR_STEAL_PTR(dst->vendor_id, src->vendor_id);
+ VIR_STEAL_PTR(dst->features, src->features);
+ dst->nfeatures_max = src->nfeatures_max;
+ src->nfeatures_max = 0;
+ dst->nfeatures = src->nfeatures;
+ src->nfeatures = 0;
+}
+
+
virCPUDefPtr
virCPUDefCopyWithoutModel(const virCPUDef *cpu)
{
diff --git a/src/conf/cpu_conf.h b/src/conf/cpu_conf.h
index 2bbab9e..d866a89 100644
--- a/src/conf/cpu_conf.h
+++ b/src/conf/cpu_conf.h
@@ -123,6 +123,10 @@ virCPUDefCopyModel(virCPUDefPtr dst,
const virCPUDef *src,
bool resetPolicy);
+void
+virCPUDefMoveModel(virCPUDefPtr dst,
+ virCPUDefPtr src);
+
virCPUDefPtr
virCPUDefCopy(const virCPUDef *cpu);
diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms
index 26f5bc8..1cfebd5 100644
--- a/src/libvirt_private.syms
+++ b/src/libvirt_private.syms
@@ -71,6 +71,7 @@ virCPUDefFormat;
virCPUDefFormatBuf;
virCPUDefFree;
virCPUDefFreeModel;
+virCPUDefMoveModel;
virCPUDefParseXML;
virCPUDefUpdateFeature;
virCPUModeTypeToString;