/*
* cpu_conf.c: CPU XML handling
*
- * Copyright (C) 2009-2013 Red Hat, Inc.
+ * Copyright (C) 2009-2014 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
}
}
virBufferAddLit(buf, ">\n");
+ virBufferAdjustIndent(buf, 2);
if (def->arch)
- virBufferAsprintf(buf, " <arch>%s</arch>\n",
+ virBufferAsprintf(buf, "<arch>%s</arch>\n",
virArchToString(def->arch));
-
- virBufferAdjustIndent(buf, 2);
if (virCPUDefFormatBuf(buf, def, flags) < 0)
return -1;
virBufferAdjustIndent(buf, -2);
if (def->ncells) {
virBufferAddLit(buf, "<numa>\n");
+ virBufferAdjustIndent(buf, 2);
for (i = 0; i < def->ncells; i++) {
- virBufferAddLit(buf, " <cell");
+ virBufferAddLit(buf, "<cell");
virBufferAsprintf(buf, " cpus='%s'", def->cells[i].cpustr);
virBufferAsprintf(buf, " memory='%d'", def->cells[i].mem);
virBufferAddLit(buf, "/>\n");
}
+ virBufferAdjustIndent(buf, -2);
virBufferAddLit(buf, "</numa>\n");
}
return 0;
/*
- * Copyright (C) 2009-2011 Red Hat, Inc.
+ * Copyright (C) 2009-2014 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
return 0;
if (def->average || def->floor) {
- virBufferAsprintf(buf, " <%s", elem_name);
+ virBufferAsprintf(buf, "<%s", elem_name);
if (def->average)
virBufferAsprintf(buf, " average='%llu'", def->average);
}
virBufferAddLit(buf, "<bandwidth>\n");
+ virBufferAdjustIndent(buf, 2);
if (virNetDevBandwidthRateFormat(def->in, buf, "inbound") < 0 ||
virNetDevBandwidthRateFormat(def->out, buf, "outbound") < 0)
goto cleanup;
+ virBufferAdjustIndent(buf, -2);
virBufferAddLit(buf, "</bandwidth>\n");
ret = 0;
}
virBufferAsprintf(buf, "<vlan%s>\n", def->trunk ? " trunk='yes'" : "");
+ virBufferAdjustIndent(buf, 2);
for (i = 0; i < def->nTags; i++) {
if (def->nativeMode != VIR_NATIVE_VLAN_MODE_DEFAULT &&
def->nativeTag == def->tag[i]) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
_("Bad value for nativeMode"));
}
- virBufferAsprintf(buf, " <tag id='%u' nativeMode='%s'/>\n",
+ virBufferAsprintf(buf, "<tag id='%u' nativeMode='%s'/>\n",
def->tag[i], mode);
} else {
- virBufferAsprintf(buf, " <tag id='%u'/>\n", def->tag[i]);
+ virBufferAsprintf(buf, "<tag id='%u'/>\n", def->tag[i]);
}
}
+ virBufferAdjustIndent(buf, -2);
virBufferAddLit(buf, "</vlan>\n");
return 0;
}
/*
- * Copyright (C) 2009-2012 Red Hat, Inc.
+ * Copyright (C) 2009-2014 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
virNetDevVPortTypeToString(type));
}
}
- virBufferAddLit(buf, " <parameters");
+ virBufferAdjustIndent(buf, 2);
+ virBufferAddLit(buf, "<parameters");
if (virtPort->managerID_specified &&
(type == VIR_NETDEV_VPORT_PROFILE_8021QBG ||
}
virBufferAddLit(buf, "/>\n");
+ virBufferAdjustIndent(buf, -2);
virBufferAddLit(buf, "</virtualport>\n");
return 0;
}
/*
* secret_conf.c: internal <secret> XML handling
*
- * Copyright (C) 2009, 2011, 2013 Red Hat, Inc.
+ * Copyright (C) 2009, 2011, 2013, 2014 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
def->usage_type);
return -1;
}
- virBufferAsprintf(buf, " <usage type='%s'>\n", type);
+ virBufferAsprintf(buf, "<usage type='%s'>\n", type);
+ virBufferAdjustIndent(buf, 2);
switch (def->usage_type) {
case VIR_SECRET_USAGE_TYPE_NONE:
break;
case VIR_SECRET_USAGE_TYPE_VOLUME:
if (def->usage.volume != NULL)
- virBufferEscapeString(buf, " <volume>%s</volume>\n",
+ virBufferEscapeString(buf, "<volume>%s</volume>\n",
def->usage.volume);
break;
case VIR_SECRET_USAGE_TYPE_CEPH:
if (def->usage.ceph != NULL) {
- virBufferEscapeString(buf, " <name>%s</name>\n",
+ virBufferEscapeString(buf, "<name>%s</name>\n",
def->usage.ceph);
}
break;
case VIR_SECRET_USAGE_TYPE_ISCSI:
if (def->usage.target != NULL) {
- virBufferEscapeString(buf, " <target>%s</target>\n",
+ virBufferEscapeString(buf, "<target>%s</target>\n",
def->usage.target);
}
break;
def->usage_type);
return -1;
}
- virBufferAddLit(buf, " </usage>\n");
+ virBufferAdjustIndent(buf, -2);
+ virBufferAddLit(buf, "</usage>\n");
return 0;
}
uuid = def->uuid;
virUUIDFormat(uuid, uuidstr);
- virBufferEscapeString(&buf, " <uuid>%s</uuid>\n", uuidstr);
+ virBufferAdjustIndent(&buf, 2);
+ virBufferEscapeString(&buf, "<uuid>%s</uuid>\n", uuidstr);
if (def->description != NULL)
- virBufferEscapeString(&buf, " <description>%s</description>\n",
+ virBufferEscapeString(&buf, "<description>%s</description>\n",
def->description);
if (def->usage_type != VIR_SECRET_USAGE_TYPE_NONE &&
virSecretDefFormatUsage(&buf, def) < 0)
goto error;
+ virBufferAdjustIndent(&buf, -2);
virBufferAddLit(&buf, "</secret>\n");
if (virBufferError(&buf))