Replace QEmu with QEMU

QEMU is the preferred spelling used on QEMU website.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Ján Tomko 2018-03-31 16:51:14 +02:00
parent 5c744a2d44
commit 1943d89b72
10 changed files with 25 additions and 25 deletions

View File

@ -46,18 +46,18 @@ connect to initialize the library. It will then fork a libvirt_proxy
program running as root and providing read_only access to the API, this is program running as root and providing read_only access to the API, this is
then only useful for reporting and monitoring.</p> then only useful for reporting and monitoring.</p>
<h2><a id="QEmu">QEmu and KVM support</a></h2> <h2><a id="QEMU">QEMU and KVM support</a></h2>
<p>The model for QEmu and KVM is completely similar, basically KVM is based <p>The model for QEMU and KVM is completely similar, basically KVM is based
on QEmu for the process controlling a new domain, only small details differs on QEMU for the process controlling a new domain, only small details differs
between the two. In both case the libvirt API is provided by a controlling between the two. In both case the libvirt API is provided by a controlling
process forked by libvirt in the background and which launch and control the process forked by libvirt in the background and which launch and control the
QEmu or KVM process. That program called libvirt_qemud talks though a specific QEMU or KVM process. That program called libvirt_qemud talks though a specific
protocol to the library, and connects to the console of the QEmu process in protocol to the library, and connects to the console of the QEMU process in
order to control and report on its status. Libvirt tries to expose all the order to control and report on its status. Libvirt tries to expose all the
emulations models of QEmu, the selection is done when creating the new emulations models of QEMU, the selection is done when creating the new
domain, by specifying the architecture and machine type targeted.</p> domain, by specifying the architecture and machine type targeted.</p>
<p>The code controlling the QEmu process is available in the <p>The code controlling the QEMU process is available in the
<code>qemud/</code> directory.</p> <code>qemud/</code> directory.</p>
<h2><a id="drivers">Driver based architecture</a></h2> <h2><a id="drivers">Driver based architecture</a></h2>
@ -83,9 +83,9 @@ drivers present in driver.h:</p>
is in the <code>proxy/</code> directory.</li> is in the <code>proxy/</code> directory.</li>
<li>xm_internal: provide support for Xen defined but not running <li>xm_internal: provide support for Xen defined but not running
domains.</li> domains.</li>
<li>qemu_internal: implement the driver functions for QEmu and <li>qemu_internal: implement the driver functions for QEMU and
KVM virtualization engines. It also uses a qemud/ specific daemon KVM virtualization engines. It also uses a qemud/ specific daemon
which interacts with the QEmu process to implement libvirt API.</li> which interacts with the QEMU process to implement libvirt API.</li>
<li>test: this is a test driver useful for regression tests of the <li>test: this is a test driver useful for regression tests of the
front-end part of libvirt.</li> front-end part of libvirt.</li>
</ul> </ul>

View File

@ -567,7 +567,7 @@ $ virsh domxml-to-native qemu-argv demo.xml
</dl> </dl>
<p>Example:</p><pre> <p>Example:</p><pre>
&lt;domain type='qemu' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'&gt; &lt;domain type='qemu' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'&gt;
&lt;name&gt;QEmu-fedora-i686&lt;/name&gt; &lt;name&gt;QEMU-fedora-i686&lt;/name&gt;
&lt;memory&gt;219200&lt;/memory&gt; &lt;memory&gt;219200&lt;/memory&gt;
&lt;os&gt; &lt;os&gt;
&lt;type arch='i686' machine='pc'&gt;hvm&lt;/type&gt; &lt;type arch='i686' machine='pc'&gt;hvm&lt;/type&gt;
@ -587,7 +587,7 @@ $ virsh domxml-to-native qemu-argv demo.xml
<h3>QEMU emulated guest on x86_64</h3> <h3>QEMU emulated guest on x86_64</h3>
<pre>&lt;domain type='qemu'&gt; <pre>&lt;domain type='qemu'&gt;
&lt;name&gt;QEmu-fedora-i686&lt;/name&gt; &lt;name&gt;QEMU-fedora-i686&lt;/name&gt;
&lt;uuid&gt;c7a5fdbd-cdaf-9455-926a-d65c16db1809&lt;/uuid&gt; &lt;uuid&gt;c7a5fdbd-cdaf-9455-926a-d65c16db1809&lt;/uuid&gt;
&lt;memory&gt;219200&lt;/memory&gt; &lt;memory&gt;219200&lt;/memory&gt;
&lt;currentMemory&gt;219200&lt;/currentMemory&gt; &lt;currentMemory&gt;219200&lt;/currentMemory&gt;

View File

@ -30,7 +30,7 @@
the message is discarded, if higher the message is output. If the message is discarded, if higher the message is output. If
no filter matches, then a general priority level is applied to no filter matches, then a general priority level is applied to
all remaining messages. This allows, for example, capturing all all remaining messages. This allows, for example, capturing all
debug messages for the QEmu driver, but otherwise only allowing debug messages for the QEMU driver, but otherwise only allowing
errors to show up from other parts.</li> errors to show up from other parts.</li>
<li><b>log outputs</b>: once a message has gone through filtering a set of <li><b>log outputs</b>: once a message has gone through filtering a set of
output defines where to send the message, they can also filter output defines where to send the message, they can also filter
@ -236,7 +236,7 @@ export LIBVIRT_LOG_OUTPUTS="1:file:virsh.log"</pre>
what is happening and where things are going wrong, allowing to then what is happening and where things are going wrong, allowing to then
put the correct breakpoints when running under a debugger.</p> put the correct breakpoints when running under a debugger.</p>
<p>To activate full debug of the libvirt entry points, utility <p>To activate full debug of the libvirt entry points, utility
functions and the QEmu/KVM driver, set:</p> functions and the QEMU/KVM driver, set:</p>
<pre>log_filters="1:libvirt 1:util 1:qemu" <pre>log_filters="1:libvirt 1:util 1:qemu"
log_outputs="1:file:/var/log/libvirt/libvirtd.log"</pre> log_outputs="1:file:/var/log/libvirt/libvirtd.log"</pre>
<p>in libvirtd.conf and restart the daemon will allow to <p>in libvirtd.conf and restart the daemon will allow to

View File

@ -5821,7 +5821,7 @@
<!-- <!--
Optional hypervisor extensions in their own namespace: Optional hypervisor extensions in their own namespace:
QEmu QEMU
--> -->
<define name="qemucmdline"> <define name="qemucmdline">
<element name="commandline" ns="http://libvirt.org/schemas/domain/qemu/1.0"> <element name="commandline" ns="http://libvirt.org/schemas/domain/qemu/1.0">

View File

@ -649,7 +649,7 @@ networkMigrateStateFiles(virNetworkDriverStatePtr driver)
/** /**
* networkStateInitialize: * networkStateInitialize:
* *
* Initialization function for the QEmu daemon * Initialization function for the QEMU daemon
*/ */
static int static int
networkStateInitialize(bool privileged, networkStateInitialize(bool privileged,
@ -814,7 +814,7 @@ networkStateAutoStart(void)
/** /**
* networkStateReload: * networkStateReload:
* *
* Function to restart the QEmu daemon, it will recheck the configuration * Function to restart the QEMU daemon, it will recheck the configuration
* files and update its state and the networking * files and update its state and the networking
*/ */
static int static int
@ -840,7 +840,7 @@ networkStateReload(void)
/** /**
* networkStateCleanup: * networkStateCleanup:
* *
* Shutdown the QEmu daemon, it will stop all active domains and networks * Shutdown the QEMU daemon, it will stop all active domains and networks
*/ */
static int static int
networkStateCleanup(void) networkStateCleanup(void)

View File

@ -166,7 +166,7 @@ nwfilterDriverInstallDBusMatches(DBusConnection *sysbus ATTRIBUTE_UNUSED)
/** /**
* nwfilterStateInitialize: * nwfilterStateInitialize:
* *
* Initialization function for the QEmu daemon * Initialization function for the QEMU daemon
*/ */
static int static int
nwfilterStateInitialize(bool privileged, nwfilterStateInitialize(bool privileged,

View File

@ -541,7 +541,7 @@
# If clear_emulator_capabilities is enabled, libvirt will drop all # If clear_emulator_capabilities is enabled, libvirt will drop all
# privileged capabilities of the QEmu/KVM emulator. This is enabled by # privileged capabilities of the QEMU/KVM emulator. This is enabled by
# default. # default.
# #
# Warning: Disabling this option means that a compromised guest can # Warning: Disabling this option means that a compromised guest can

View File

@ -10009,7 +10009,7 @@ qemuBuildCommandLine(virQEMUDriverPtr driver,
/* /*
* do not use boot=on for drives when not using KVM since this * do not use boot=on for drives when not using KVM since this
* is not supported at all in upstream QEmu. * is not supported at all in upstream QEMU.
*/ */
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM) && if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM) &&
(def->virtType == VIR_DOMAIN_VIRT_QEMU)) (def->virtType == VIR_DOMAIN_VIRT_QEMU))

View File

@ -600,7 +600,7 @@ qemuDomainFindMaxID(virDomainObjPtr vm,
/** /**
* qemuStateInitialize: * qemuStateInitialize:
* *
* Initialization function for the QEmu daemon * Initialization function for the QEMU daemon
*/ */
static int static int
qemuStateInitialize(bool privileged, qemuStateInitialize(bool privileged,
@ -951,7 +951,7 @@ qemuStateInitialize(bool privileged,
/** /**
* qemuStateAutoStart: * qemuStateAutoStart:
* *
* Function to auto start the QEmu daemons * Function to auto start the QEMU daemons
*/ */
static void static void
qemuStateAutoStart(void) qemuStateAutoStart(void)
@ -978,7 +978,7 @@ static void qemuNotifyLoadDomain(virDomainObjPtr vm, int newVM, void *opaque)
/** /**
* qemuStateReload: * qemuStateReload:
* *
* Function to restart the QEmu daemon, it will recheck the configuration * Function to restart the QEMU daemon, it will recheck the configuration
* files and update its state and the networking * files and update its state and the networking
*/ */
static int static int
@ -1069,7 +1069,7 @@ qemuStateStop(void)
/** /**
* qemuStateCleanup: * qemuStateCleanup:
* *
* Shutdown the QEmu daemon, it will stop all active domains and networks * Shutdown the QEMU daemon, it will stop all active domains and networks
*/ */
static int static int
qemuStateCleanup(void) qemuStateCleanup(void)

View File

@ -28,7 +28,7 @@
typedef enum { typedef enum {
VIR_HOOK_DRIVER_DAEMON = 0, /* Daemon related events */ VIR_HOOK_DRIVER_DAEMON = 0, /* Daemon related events */
VIR_HOOK_DRIVER_QEMU, /* QEmu domains related events */ VIR_HOOK_DRIVER_QEMU, /* QEMU domains related events */
VIR_HOOK_DRIVER_LXC, /* LXC domains related events */ VIR_HOOK_DRIVER_LXC, /* LXC domains related events */
VIR_HOOK_DRIVER_NETWORK, /* network related events */ VIR_HOOK_DRIVER_NETWORK, /* network related events */
VIR_HOOK_DRIVER_LIBXL, /* Xen libxl domains related events */ VIR_HOOK_DRIVER_LIBXL, /* Xen libxl domains related events */