mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 09:55:18 +00:00
storage: Make active boolean
Since we treat it like a boolean, let's store it that way. At least one path had already treated as true/false anyway.
This commit is contained in:
parent
63ed05d241
commit
0c7a9b994c
@ -266,7 +266,7 @@ struct _virStoragePoolObj {
|
|||||||
|
|
||||||
char *configFile;
|
char *configFile;
|
||||||
char *autostartLink;
|
char *autostartLink;
|
||||||
int active;
|
bool active;
|
||||||
int autostart;
|
int autostart;
|
||||||
unsigned int asyncjobs;
|
unsigned int asyncjobs;
|
||||||
|
|
||||||
|
@ -205,7 +205,7 @@ storageDriverAutostart(void)
|
|||||||
virStoragePoolObjUnlock(pool);
|
virStoragePoolObjUnlock(pool);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
pool->active = 1;
|
pool->active = true;
|
||||||
}
|
}
|
||||||
virStoragePoolObjUnlock(pool);
|
virStoragePoolObjUnlock(pool);
|
||||||
}
|
}
|
||||||
@ -715,7 +715,7 @@ storagePoolCreateXML(virConnectPtr conn,
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
VIR_INFO("Creating storage pool '%s'", pool->def->name);
|
VIR_INFO("Creating storage pool '%s'", pool->def->name);
|
||||||
pool->active = 1;
|
pool->active = true;
|
||||||
|
|
||||||
ret = virGetStoragePool(conn, pool->def->name, pool->def->uuid,
|
ret = virGetStoragePool(conn, pool->def->name, pool->def->uuid,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
@ -881,7 +881,7 @@ storagePoolCreate(virStoragePoolPtr obj,
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
pool->active = 1;
|
pool->active = true;
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
@ -978,7 +978,7 @@ storagePoolDestroy(virStoragePoolPtr obj)
|
|||||||
|
|
||||||
virStoragePoolObjClearVols(pool);
|
virStoragePoolObjClearVols(pool);
|
||||||
|
|
||||||
pool->active = 0;
|
pool->active = false;
|
||||||
|
|
||||||
if (pool->configFile == NULL) {
|
if (pool->configFile == NULL) {
|
||||||
virStoragePoolObjRemove(&driver->pools, pool);
|
virStoragePoolObjRemove(&driver->pools, pool);
|
||||||
@ -1100,7 +1100,7 @@ storagePoolRefresh(virStoragePoolPtr obj,
|
|||||||
if (backend->stopPool)
|
if (backend->stopPool)
|
||||||
backend->stopPool(obj->conn, pool);
|
backend->stopPool(obj->conn, pool);
|
||||||
|
|
||||||
pool->active = 0;
|
pool->active = false;
|
||||||
|
|
||||||
if (pool->configFile == NULL) {
|
if (pool->configFile == NULL) {
|
||||||
virStoragePoolObjRemove(&driver->pools, pool);
|
virStoragePoolObjRemove(&driver->pools, pool);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user