Various: Fix typos `unkown', `retreive' (detected by lintian)
authorIan Jackson <ian.jackson@citrix.com>
Wed, 3 Oct 2018 17:51:50 +0000 (18:51 +0100)
committerIan Jackson <ian.jackson@eu.citrix.com>
Mon, 8 Oct 2018 14:20:18 +0000 (15:20 +0100)
Signed-off-by: Ian Jackson <ian.jackson@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/hotplug/Linux/block-drbd-probe
tools/libxc/xc_dom_elfloader.c
tools/libxl/libxl_dm.c
tools/libxl/libxl_event.h
tools/libxl/libxl_qmp.c
xen/include/xen/libfdt/libfdt.h

index 635d9f9a52016275baaf19e5d0aeda9b2a6bb7d7..7b2968b6d944ea7222b79b1acda8c5f0dab8ab23 100755 (executable)
@@ -20,7 +20,7 @@
 # Return value:
 #     0: the device is drbd device
 #     1: the device is not drbd device
-#     2: unkown error
+#     2: unknown error
 #     3: the drbd device does not use protocol D
 #     4: the drbd device is not ready
 
index 26b2846365075196d621d0edb54abe5ad7a7f9c2..82b5f2ee797330cc56a351f9409fa635f87d40f3 100644 (file)
@@ -87,7 +87,7 @@ static char *xc_dom_guest_type(struct xc_dom_image *dom,
         return "xen-3.0-x86_64";
     default:
         xc_dom_panic(dom->xch, XC_INVALID_KERNEL,
-                     "%s: unkown image type %"PRIu64,
+                     "%s: unknown image type %"PRIu64,
                      __FUNCTION__, machine);
         return NULL;
     }
index abd31ee6f2d2cc453d46026bf3378c582a0a3893..26eb16af34b920ca0a1b883564c4d041b4315fc1 100644 (file)
@@ -992,7 +992,7 @@ static int libxl__build_device_model_args_new(libxl__gc *gc,
 
     /*
      * Do not use any of the user-provided config files in sysconfdir,
-     * avoiding unkown and uncontrolled configuration.
+     * avoiding unknown and uncontrolled configuration.
      */
     flexarray_append(dm_args, "-no-user-config");
 
index 1ea789e231d26fc9f1ca0e3c74b148d2800ec396..d1517f7456a2d5ed9ef79087db0222f6fdb32950 100644 (file)
@@ -169,7 +169,7 @@ void libxl_event_register_callbacks(libxl_ctx *ctx,
  *
  * Applications should ensure that they eventually retrieve every
  * event using libxl_event_check or libxl_event_wait, since events
- * which occur but are not retreived by the application will be queued
+ * which occur but are not retrieved by the application will be queued
  * inside libxl indefinitely.  libxl_event_check/_wait may be O(n)
  * where n is the number of queued events which do not match the
  * criteria specified in the arguments to check/wait.
index bdf1778cf1889a70f7894da0cee7ef298367fdd2..6a5c9975467682d6e325cfc4f1f94375fe6bcf7b 100644 (file)
@@ -238,7 +238,7 @@ static int qmp_register_vnc_callback(libxl__qmp_handler *qmp,
     port = libxl__json_object_get_string(obj);
 
     if (!addr || !port) {
-        LOGD(ERROR, qmp->domid, "Failed to retreive VNC connect information.");
+        LOGD(ERROR, qmp->domid, "Failed to retrieve VNC connect information.");
         goto out;
     }
 
index d6b94a183682273c5bacc47abcd75509f06c02e7..7c75688a39150a2c0dc68b82af718f5f8e5efaba 100644 (file)
@@ -594,7 +594,7 @@ const char *fdt_get_alias_namelen(const void *fdt,
                                  const char *name, int namelen);
 
 /**
- * fdt_get_alias - retreive the path referenced by a given alias
+ * fdt_get_alias - retrieve the path referenced by a given alias
  * @fdt: pointer to the device tree blob
  * @name: name of the alias th look up
  *