mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
Fix Multiple Typos
Signed-off-by: Nitesh Konkar <nitkon12@linux.vnet.ibm.com>
This commit is contained in:
parent
c944a63461
commit
d523fd81ba
@ -14165,7 +14165,7 @@ void virDomainControllerInsertPreAlloced(virDomainDefPtr def,
|
|||||||
virDomainControllerDefPtr controller)
|
virDomainControllerDefPtr controller)
|
||||||
{
|
{
|
||||||
int idx;
|
int idx;
|
||||||
/* Tenatively plan to insert controller at the end. */
|
/* Tentatively plan to insert controller at the end. */
|
||||||
int insertAt = -1;
|
int insertAt = -1;
|
||||||
virDomainControllerDefPtr current = NULL;
|
virDomainControllerDefPtr current = NULL;
|
||||||
|
|
||||||
@ -19847,7 +19847,7 @@ virDomainDiskBlockIoDefFormat(virBufferPtr buf,
|
|||||||
|
|
||||||
/* virDomainSourceDefFormatSeclabel:
|
/* virDomainSourceDefFormatSeclabel:
|
||||||
*
|
*
|
||||||
* This function automaticaly closes the <source> element and formats any
|
* This function automatically closes the <source> element and formats any
|
||||||
* possible seclabels.
|
* possible seclabels.
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
|
@ -300,7 +300,7 @@ typedef enum {
|
|||||||
|
|
||||||
/* the backend driver used for PCI hostdev devices */
|
/* the backend driver used for PCI hostdev devices */
|
||||||
typedef enum {
|
typedef enum {
|
||||||
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT, /* detect automaticaly, prefer VFIO */
|
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT, /* detect automatically, prefer VFIO */
|
||||||
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM, /* force legacy kvm style */
|
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM, /* force legacy kvm style */
|
||||||
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO, /* force vfio */
|
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO, /* force vfio */
|
||||||
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_XEN, /* force legacy xen style, use pciback */
|
VIR_DOMAIN_HOSTDEV_PCI_BACKEND_XEN, /* force legacy xen style, use pciback */
|
||||||
|
@ -2476,7 +2476,7 @@ virStoragePoolSourceFindDuplicate(virConnectPtr conn,
|
|||||||
if (def->type != pool->def->type)
|
if (def->type != pool->def->type)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Don't mach against ourself if re-defining existing pool ! */
|
/* Don't match against ourself if re-defining existing pool ! */
|
||||||
if (STREQ(pool->def->name, def->name))
|
if (STREQ(pool->def->name, def->name))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ esxFreePrivate(esxPrivate **priv)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Parse a file name from a .vmx file and convert it to datastore path format
|
* Parse a file name from a .vmx file and convert it to datastore path format
|
||||||
* if possbile. A .vmx file can contain file names in various formats:
|
* if possible. A .vmx file can contain file names in various formats:
|
||||||
*
|
*
|
||||||
* - A single name referencing a file in the same directory as the .vmx file:
|
* - A single name referencing a file in the same directory as the .vmx file:
|
||||||
*
|
*
|
||||||
@ -969,7 +969,7 @@ esxConnectOpen(virConnectPtr conn, virConnectAuthPtr auth,
|
|||||||
STRNEQ(vCenterIPAddress, potentialVCenterIPAddress)) {
|
STRNEQ(vCenterIPAddress, potentialVCenterIPAddress)) {
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
_("This host is managed by a vCenter with IP "
|
_("This host is managed by a vCenter with IP "
|
||||||
"address %s, but a mismachting vCenter '%s' "
|
"address %s, but a mismatching vCenter '%s' "
|
||||||
"(%s) has been specified"),
|
"(%s) has been specified"),
|
||||||
potentialVCenterIPAddress, priv->parsedUri->vCenter,
|
potentialVCenterIPAddress, priv->parsedUri->vCenter,
|
||||||
vCenterIPAddress);
|
vCenterIPAddress);
|
||||||
|
@ -884,7 +884,7 @@ udevGetIfaceDefBridge(struct udev *udev,
|
|||||||
goto error;
|
goto error;
|
||||||
ifacedef->data.bridge.nbItf = member_count;
|
ifacedef->data.bridge.nbItf = member_count;
|
||||||
|
|
||||||
/* Get the interface defintions for each member of the bridge */
|
/* Get the interface definitions for each member of the bridge */
|
||||||
for (i = 0; i < member_count; i++) {
|
for (i = 0; i < member_count; i++) {
|
||||||
ifacedef->data.bridge.itf[i] =
|
ifacedef->data.bridge.itf[i] =
|
||||||
udevGetIfaceDef(udev, member_list[i]->d_name);
|
udevGetIfaceDef(udev, member_list[i]->d_name);
|
||||||
|
Loading…
Reference in New Issue
Block a user