cleanup: Change datatype of disk->shared to boolean

This commit is contained in:
Osier Yang 2013-04-10 18:59:44 +08:00
parent 7a984d5713
commit a29bafd5de
4 changed files with 4 additions and 4 deletions

View File

@ -4639,7 +4639,7 @@ virDomainDiskDefParseXML(virDomainXMLOptionPtr xmlopt,
} else if (xmlStrEqual(cur->name, BAD_CAST "readonly")) {
def->readonly = 1;
} else if (xmlStrEqual(cur->name, BAD_CAST "shareable")) {
def->shared = 1;
def->shared = true;
} else if (xmlStrEqual(cur->name, BAD_CAST "transient")) {
def->transient = 1;
} else if ((flags & VIR_DOMAIN_XML_INTERNAL_STATUS) &&

View File

@ -675,7 +675,7 @@ struct _virDomainDiskDef {
int snapshot; /* enum virDomainSnapshotLocation, snapshot_conf.h */
int startupPolicy; /* enum virDomainStartupPolicy */
unsigned int readonly : 1;
unsigned int shared : 1;
bool shared;
unsigned int transient : 1;
virDomainDeviceInfo info;
virStorageEncryptionPtr encryption;

View File

@ -509,7 +509,7 @@ xenParseSxprDisks(virDomainDefPtr def,
disk->readonly = 1;
if (mode &&
strchr(mode, '!'))
disk->shared = 1;
disk->shared = true;
if (VIR_REALLOC_N(def->disks, def->ndisks+1) < 0)
goto no_memory;

View File

@ -613,7 +613,7 @@ xenParseXM(virConfPtr conf, int xendConfigVersion,
disk->readonly = 1;
else if ((STREQ(head, "w!")) ||
(STREQ(head, "!")))
disk->shared = 1;
disk->shared = true;
/* Maintain list in sorted order according to target device name */
if (VIR_REALLOC_N(def->disks, def->ndisks+1) < 0)