]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
tools: fix typo: subsytem -> subsystem
authorMaximilian Engelhardt <maxi@daemonizer.de>
Mon, 30 Dec 2024 21:00:33 +0000 (22:00 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 30 Dec 2024 21:40:36 +0000 (21:40 +0000)
This was found by the lintian tool (Debian package checker) during
packaging xen for Debian.

Signed-off-by: Maximilian Engelhardt <maxi@daemonizer.de>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
tools/include/xenctrl.h
tools/misc/xen-memshare.c

index 5bb41c9c53a55dadefa91ed9b02e04cb05029ce0..495598123133a366bed26947b8fd0681648a1b75 100644 (file)
@@ -2212,7 +2212,7 @@ int xc_memshr_domain_resume(xc_interface *xch,
  * May fail with:
  *  EINVAL if the gfn is not populated or not sharable (mmio, etc)
  *  ENOMEM if internal data structures cannot be allocated
- *  E2BIG if the page is being referenced by other subsytems (e.g. qemu)
+ *  E2BIG if the page is being referenced by other subsystems (e.g. qemu)
  *  ENOENT or EEXIST if there are internal hypervisor errors.
  */
 int xc_memshr_nominate_gfn(xc_interface *xch,
index 8e5e22b9e95d91f1441d8eb226b64852eca075d5..ab30979ebcd9bdfc46e48062c936f91e1fde6e8d 100644 (file)
@@ -30,7 +30,7 @@ static int usage(const char* prog)
     printf("  add-to-physmap <domid> <gfn> <source> <source-gfn> <source-handle>\n");
     printf("                          - Populate a page in a domain with a shared page.\n");
     printf("  debug-gfn <domid> <gfn> - Debug a particular domain and gfn.\n");
-    printf("  audit                   - Audit the sharing subsytem in Xen.\n");
+    printf("  audit                   - Audit the sharing subsystem in Xen.\n");
     return 1;
 }