]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
xen: Replace few mentions of xend by libxl
authorAnthony PERARD <anthony.perard@citrix.com>
Fri, 14 Sep 2018 11:18:30 +0000 (12:18 +0100)
committerAnthony PERARD <anthony.perard@citrix.com>
Mon, 14 Jan 2019 13:45:40 +0000 (13:45 +0000)
xend have been replaced by libxenlight (libxl) for many Xen releases
now.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
hw/xenpv/xen_machine_pv.c
include/hw/xen/xen.h
qemu-options.hx

index 8d68fef25e2d87ca889cd89e2d7dbceb39cfc388..dcaf2a01a321241f66712930d9fe361435f585cd 100644 (file)
@@ -43,7 +43,7 @@ static void xen_init_pv(MachineState *machine)
 
     switch (xen_mode) {
     case XEN_ATTACH:
-        /* nothing to do, xend handles everything */
+        /* nothing to do, libxl handles everything */
         break;
     case XEN_EMULATE:
         error_report("xen emulation not implemented (yet)");
index 978aaa31fb66a7997110d02180eaca47cc1472e8..ba039c146dc160cf5a33bcf213c114aa3ee700bf 100644 (file)
@@ -15,7 +15,7 @@
 /* xen-machine.c */
 enum xen_mode {
     XEN_EMULATE = 0,  // xen emulation, using xenner (default)
-    XEN_ATTACH        // attach to xen domain created by xend
+    XEN_ATTACH        // attach to xen domain created by libxl
 };
 
 extern uint32_t xen_domid;
index 7c323c94065f47930c4c104a9b86d758d70c6734..521511ec1308491b31fd0e036b6fab0ae7bbc6d5 100644 (file)
@@ -3396,7 +3396,7 @@ DEF("xen-domid", HAS_ARG, QEMU_OPTION_xen_domid,
     "-xen-domid id   specify xen guest domain id\n", QEMU_ARCH_ALL)
 DEF("xen-attach", 0, QEMU_OPTION_xen_attach,
     "-xen-attach     attach to existing xen domain\n"
-    "                xend will use this when starting QEMU\n",
+    "                libxl will use this when starting QEMU\n",
     QEMU_ARCH_ALL)
 DEF("xen-domid-restrict", 0, QEMU_OPTION_xen_domid_restrict,
     "-xen-domid-restrict     restrict set of available xen operations\n"
@@ -3410,7 +3410,7 @@ Specify xen guest domain @var{id} (XEN only).
 @item -xen-attach
 @findex -xen-attach
 Attach to existing xen domain.
-xend will use this when starting QEMU (XEN only).
+libxl will use this when starting QEMU (XEN only).
 @findex -xen-domid-restrict
 Restrict set of available xen operations to specified domain id (XEN only).
 ETEXI