mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 15:27:47 +00:00
Fix minor typos
This commit is contained in:
parent
347035f959
commit
47b70b8793
@ -16830,7 +16830,7 @@ virDomainDeviceInfoCheckABIStability(virDomainDeviceInfoPtr src,
|
||||
|
||||
if (src->addr.dimm.base != dst->addr.dimm.base) {
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("Target device dimm base addres '%llx' does "
|
||||
_("Target device dimm base address '%llx' does "
|
||||
"not match source '%llx'"),
|
||||
dst->addr.dimm.base,
|
||||
src->addr.dimm.base);
|
||||
|
@ -2360,7 +2360,7 @@ typedef enum {
|
||||
VIR_DOMAIN_TAINT_HOST_CPU, /* Host CPU passthrough in use */
|
||||
VIR_DOMAIN_TAINT_HOOK, /* Domain (possibly) changed via hook script */
|
||||
VIR_DOMAIN_TAINT_CDROM_PASSTHROUGH,/* CDROM passthrough */
|
||||
VIR_DOMAIN_TAINT_CUSTOM_DTB, /* Custom device tree blob was specifed */
|
||||
VIR_DOMAIN_TAINT_CUSTOM_DTB, /* Custom device tree blob was specified */
|
||||
|
||||
VIR_DOMAIN_TAINT_LAST
|
||||
} virDomainTaintFlags;
|
||||
|
@ -2404,7 +2404,7 @@ int lxcContainerStart(virDomainDefPtr def,
|
||||
} else {
|
||||
if (lxcNeedNetworkNamespace(def)) {
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
||||
_("Config askes for inherit net namespace "
|
||||
_("Config asks for inherit net namespace "
|
||||
"as well as private network interfaces"));
|
||||
VIR_FREE(stack);
|
||||
return -1;
|
||||
|
@ -3963,7 +3963,7 @@ qemuDomainDefValidateMemoryHotplugDevice(const virDomainMemoryDef *mem,
|
||||
if (virDomainNumaGetNodeCount(def->numa) != 0) {
|
||||
if (mem->targetNode == -1) {
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
||||
_("target NUMA node needs to be specifed for "
|
||||
_("target NUMA node needs to be specified for "
|
||||
"memory device"));
|
||||
return -1;
|
||||
}
|
||||
|
@ -2631,7 +2631,7 @@ virVMXParseEthernet(virConfPtr conf, int controller, virDomainNetDefPtr *def)
|
||||
STRCASENEQ(virtualDev, "e1000e")) {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
_("Expecting VMX entry '%s' to be 'vlance' or 'vmxnet' or "
|
||||
"'vmxnet3' or 'e1000e' or 'e1000e' but found '%s'"),
|
||||
"'vmxnet3' or 'e1000' or 'e1000e' but found '%s'"),
|
||||
virtualDev_name, virtualDev);
|
||||
goto cleanup;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user