mirror of https://gitee.com/openkylin/libvirt.git
cpu: Rename cpuDataParse
The new name is virCPUDataParse. Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
938ec1620a
commit
be57e68954
|
@ -764,7 +764,7 @@ cpuDataFormat(const virCPUData *data)
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* cpuDataParse:
|
* virCPUDataParse:
|
||||||
*
|
*
|
||||||
* @xmlStr: XML string produced by cpuDataFormat
|
* @xmlStr: XML string produced by cpuDataFormat
|
||||||
*
|
*
|
||||||
|
@ -773,7 +773,7 @@ cpuDataFormat(const virCPUData *data)
|
||||||
* Returns internal CPU data structure parsed from the XML or NULL on error.
|
* Returns internal CPU data structure parsed from the XML or NULL on error.
|
||||||
*/
|
*/
|
||||||
virCPUDataPtr
|
virCPUDataPtr
|
||||||
cpuDataParse(const char *xmlStr)
|
virCPUDataParse(const char *xmlStr)
|
||||||
{
|
{
|
||||||
struct cpuArchDriver *driver;
|
struct cpuArchDriver *driver;
|
||||||
xmlDocPtr xml = NULL;
|
xmlDocPtr xml = NULL;
|
||||||
|
|
|
@ -102,7 +102,7 @@ typedef char *
|
||||||
(*cpuArchDataFormat)(const virCPUData *data);
|
(*cpuArchDataFormat)(const virCPUData *data);
|
||||||
|
|
||||||
typedef virCPUDataPtr
|
typedef virCPUDataPtr
|
||||||
(*cpuArchDataParse) (xmlXPathContextPtr ctxt);
|
(*virCPUArchDataParse)(xmlXPathContextPtr ctxt);
|
||||||
|
|
||||||
typedef int
|
typedef int
|
||||||
(*virCPUArchGetModels)(char ***models);
|
(*virCPUArchGetModels)(char ***models);
|
||||||
|
@ -127,7 +127,7 @@ struct cpuArchDriver {
|
||||||
virCPUArchCheckFeature checkFeature;
|
virCPUArchCheckFeature checkFeature;
|
||||||
virCPUArchDataCheckFeature dataCheckFeature;
|
virCPUArchDataCheckFeature dataCheckFeature;
|
||||||
cpuArchDataFormat dataFormat;
|
cpuArchDataFormat dataFormat;
|
||||||
cpuArchDataParse dataParse;
|
virCPUArchDataParse dataParse;
|
||||||
virCPUArchGetModels getModels;
|
virCPUArchGetModels getModels;
|
||||||
virCPUArchTranslate translate;
|
virCPUArchTranslate translate;
|
||||||
};
|
};
|
||||||
|
@ -230,12 +230,12 @@ virCPUTranslate(virArch arch,
|
||||||
ATTRIBUTE_NONNULL(2);
|
ATTRIBUTE_NONNULL(2);
|
||||||
|
|
||||||
|
|
||||||
/* cpuDataFormat and cpuDataParse are implemented for unit tests only and
|
/* cpuDataFormat and virCPUDataParse are implemented for unit tests only and
|
||||||
* have no real-life usage
|
* have no real-life usage
|
||||||
*/
|
*/
|
||||||
char *cpuDataFormat(const virCPUData *data)
|
char *cpuDataFormat(const virCPUData *data)
|
||||||
ATTRIBUTE_NONNULL(1);
|
ATTRIBUTE_NONNULL(1);
|
||||||
virCPUDataPtr cpuDataParse(const char *xmlStr)
|
virCPUDataPtr virCPUDataParse(const char *xmlStr)
|
||||||
ATTRIBUTE_NONNULL(1);
|
ATTRIBUTE_NONNULL(1);
|
||||||
|
|
||||||
#endif /* __VIR_CPU_H__ */
|
#endif /* __VIR_CPU_H__ */
|
||||||
|
|
|
@ -1437,7 +1437,7 @@ x86CPUDataFormat(const virCPUData *data)
|
||||||
|
|
||||||
|
|
||||||
static virCPUDataPtr
|
static virCPUDataPtr
|
||||||
x86CPUDataParse(xmlXPathContextPtr ctxt)
|
virCPUx86DataParse(xmlXPathContextPtr ctxt)
|
||||||
{
|
{
|
||||||
xmlNodePtr *nodes = NULL;
|
xmlNodePtr *nodes = NULL;
|
||||||
virCPUDataPtr cpuData = NULL;
|
virCPUDataPtr cpuData = NULL;
|
||||||
|
@ -2766,7 +2766,7 @@ struct cpuArchDriver cpuDriverX86 = {
|
||||||
.checkFeature = virCPUx86CheckFeature,
|
.checkFeature = virCPUx86CheckFeature,
|
||||||
.dataCheckFeature = virCPUx86DataCheckFeature,
|
.dataCheckFeature = virCPUx86DataCheckFeature,
|
||||||
.dataFormat = x86CPUDataFormat,
|
.dataFormat = x86CPUDataFormat,
|
||||||
.dataParse = x86CPUDataParse,
|
.dataParse = virCPUx86DataParse,
|
||||||
.getModels = virCPUx86GetModels,
|
.getModels = virCPUx86GetModels,
|
||||||
.translate = virCPUx86Translate,
|
.translate = virCPUx86Translate,
|
||||||
};
|
};
|
||||||
|
|
|
@ -977,7 +977,6 @@ cpuBaseline;
|
||||||
cpuBaselineXML;
|
cpuBaselineXML;
|
||||||
cpuDataFormat;
|
cpuDataFormat;
|
||||||
cpuDataFree;
|
cpuDataFree;
|
||||||
cpuDataParse;
|
|
||||||
cpuDecode;
|
cpuDecode;
|
||||||
cpuEncode;
|
cpuEncode;
|
||||||
cpuGuestData;
|
cpuGuestData;
|
||||||
|
@ -986,6 +985,7 @@ virCPUCheckFeature;
|
||||||
virCPUCompare;
|
virCPUCompare;
|
||||||
virCPUCompareXML;
|
virCPUCompareXML;
|
||||||
virCPUDataCheckFeature;
|
virCPUDataCheckFeature;
|
||||||
|
virCPUDataParse;
|
||||||
virCPUGetModels;
|
virCPUGetModels;
|
||||||
virCPUTranslate;
|
virCPUTranslate;
|
||||||
virCPUUpdate;
|
virCPUUpdate;
|
||||||
|
|
|
@ -472,7 +472,7 @@ cpuTestCPUID(bool guest, const void *arg)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (virTestLoadFile(hostFile, &host) < 0 ||
|
if (virTestLoadFile(hostFile, &host) < 0 ||
|
||||||
!(hostData = cpuDataParse(host)))
|
!(hostData = virCPUDataParse(host)))
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (VIR_ALLOC(cpu) < 0)
|
if (VIR_ALLOC(cpu) < 0)
|
||||||
|
|
Loading…
Reference in New Issue