]> xenbits.xensource.com Git - libvirt.git/commitdiff
maint: fix comment typos
authorEric Blake <eblake@redhat.com>
Tue, 23 Aug 2011 17:02:02 +0000 (11:02 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 23 Aug 2011 17:31:28 +0000 (11:31 -0600)
* src/qemu/qemu_driver.c (qemuDomainSaveInternal): Fix typo.
* src/conf/domain_event.c (virDomainEventDispatchMatchCallback):
Likewise.
* daemon/libvirtd.c (daemonRunStateInit): Likewise.
* src/lxc/lxc_container.c (lxcContainerChildMountSort): Likewise.
* src/util/virterror.c (virCopyError, virRaiseErrorFull): Likewise.
* src/xenxs/xen_sxpr.c (xenParseSxprSound): Likewise.

daemon/libvirtd.c
src/conf/domain_event.c
src/lxc/lxc_container.c
src/qemu/qemu_driver.c
src/util/virterror.c
src/xenxs/xen_sxpr.c

index 0530ba5dd00f3523e76363e495b1112ae126c97d..5969a8284b2802df6112e11428fcdda4b523d1eb 100644 (file)
@@ -1131,7 +1131,7 @@ static void daemonRunStateInit(void *opaque)
     virNetServerPtr srv = opaque;
 
     /* Start the stateful HV drivers
-     * This is delibrately done after telling the parent process
+     * This is deliberately done after telling the parent process
      * we're ready, since it can take a long time and this will
      * seriously delay OS bootup process */
     if (virStateInitialize(virNetServerIsPrivileged(srv)) < 0) {
index 2e0524bd84f0ce4fc7cf00292a2d11015348fdd6..3189346cb3e77e878cf8a8a20b8cd6e77f0e014c 100644 (file)
@@ -1103,11 +1103,11 @@ static int virDomainEventDispatchMatchCallback(virDomainEventPtr event,
         return 0;
 
     if (cb->dom) {
-        /* Delibrately ignoring 'id' for matching, since that
+        /* Deliberately ignoring 'id' for matching, since that
          * will cause problems when a domain switches between
          * running & shutoff states & ignoring 'name' since
          * Xen sometimes renames guests during migration, thus
-         * leaving 'uuid' as the only truely reliable ID we can use*/
+         * leaving 'uuid' as the only truly reliable ID we can use*/
 
         if (memcmp(event->dom.uuid, cb->dom->uuid, VIR_UUID_BUFLEN) == 0)
             return 1;
index 895ef09a6b925b62525258c09a354f88572ac10a..e42532855e3b30c5b5edfbb94b8df868bf015ee0 100644 (file)
@@ -287,7 +287,7 @@ static int lxcContainerChildMountSort(const void *a, const void *b)
   const char **sa = (const char**)a;
   const char **sb = (const char**)b;
 
-  /* Delibrately reversed args - we need to unmount deepest
+  /* Deliberately reversed args - we need to unmount deepest
      children first */
   return strcmp(*sb, *sa);
 }
index fc2538ae12cb21460a772130ea59978c767daf62..57ad3d1457d3dbd717fc5d5789b92dda5bb3281f 100644 (file)
@@ -2304,7 +2304,7 @@ qemuDomainSaveInternal(struct qemud_driver *driver, virDomainPtr dom,
         /* Avoid throwing an error here, since it is possible
          * that with NFS we can't actually stat() the file.
          * The subsequent codepaths will still raise an error
-         * if a truely fatal problem is hit */
+         * if a truly fatal problem is hit */
         is_reg = true;
     } else {
         is_reg = !!S_ISREG(sb.st_mode);
index 9a27feb8fd956bee57b18c3a16bce36961ba76ea..c5babb10365a3d16ec4ebf39c1b685ccdb43bbb6 100644 (file)
@@ -248,7 +248,7 @@ virCopyError(virErrorPtr from,
     to->int1 = from->int1;
     to->int2 = from->int2;
     /*
-     * Delibrately not setting 'conn', 'dom', 'net' references
+     * Deliberately not setting 'conn', 'dom', 'net' references
      */
     return ret;
 }
@@ -708,7 +708,7 @@ virRaiseErrorFull(const char *filename ATTRIBUTE_UNUSED,
      * Save the information about the error
      */
     /*
-     * Delibrately not setting conn, dom & net fields since
+     * Deliberately not setting conn, dom & net fields since
      * they're utterly unsafe
      */
     to->domain = domain;
index 6d8304084be087e27fce0acf38993455298e6462..1a8a541c675b128c9b2e389f812c3f78ef57a097 100644 (file)
@@ -604,7 +604,7 @@ xenParseSxprSound(virDomainDefPtr def,
          * Special compatability code for Xen with a bogus
          * sound=all in config.
          *
-         * NB delibrately, don't include all possible
+         * NB deliberately, don't include all possible
          * sound models anymore, just the 2 that were
          * historically present in Xen's QEMU.
          *