vz: remove unused struct field

In commit 7039bb3c we have removed code that saves uuid to vzDomObj.uuid
So this field is no longer needed.
This commit is contained in:
Mikhail Feoktistov 2016-02-10 12:39:12 +03:00 committed by Maxim Nestratov
parent 2286986a9c
commit a7b2257e9a
2 changed files with 0 additions and 6 deletions

View File

@ -419,7 +419,6 @@ prlsdkDomObjFreePrivate(void *p)
PrlHandle_Free(pdom->sdkdom);
PrlHandle_Free(pdom->cache.stats);
virCondDestroy(&pdom->cache.cond);
VIR_FREE(pdom->uuid);
VIR_FREE(pdom->home);
VIR_FREE(p);
};
@ -1287,10 +1286,6 @@ prlsdkLoadDomain(vzConnPtr privconn,
def->id = -1;
/* we will remove this field in the near future, so let's set it
* to NULL temporarily */
pdom->uuid = NULL;
pdom->cache.stats = PRL_INVALID_HANDLE;
pdom->cache.count = -1;
if (virCondInit(&pdom->cache.cond) < 0) {

View File

@ -76,7 +76,6 @@ typedef struct _vzCountersCache vzCountersCache;
struct vzDomObj {
int id;
char *uuid;
char *home;
PRL_HANDLE sdkdom;
vzCountersCache cache;