mirror of https://github.com/xemu-project/xemu.git
Fix several typos in documentation (found by codespell)
Those typos are in files which are used to generate the QEMU manual. Signed-off-by: Stefan Weil <sw@weilnetz.de> Message-Id: <20221110190825.879620-1-sw@weilnetz.de> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Ani Sinha <ani@anisinha.ca> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Acked-by: Michael S. Tsirkin <mst@redhat.com> [thuth: update sentence in can.rst as suggested by Peter] Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
f469150be8
commit
2cb40d446f
|
@ -132,7 +132,7 @@ Under ``tests/avocado/`` as the root we have:
|
||||||
|
|
||||||
(a) They are python2.7 based scripts and not python 3 scripts.
|
(a) They are python2.7 based scripts and not python 3 scripts.
|
||||||
(b) They are run from within the bios bits VM and is not subjected to QEMU
|
(b) They are run from within the bios bits VM and is not subjected to QEMU
|
||||||
build/test python script maintainance and dependency resolutions.
|
build/test python script maintenance and dependency resolutions.
|
||||||
(c) They need not be loaded by avocado framework when running tests.
|
(c) They need not be loaded by avocado framework when running tests.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -169,8 +169,9 @@ and with bitrate switch::
|
||||||
|
|
||||||
cangen can0 -b
|
cangen can0 -b
|
||||||
|
|
||||||
The test can be run viceversa, generate messages in the guest system and capture them
|
The test can also be run the other way around, generating messages in the
|
||||||
in the host one and much more combinations.
|
guest system and capturing them in the host system. Other combinations are
|
||||||
|
also possible.
|
||||||
|
|
||||||
Links to other resources
|
Links to other resources
|
||||||
------------------------
|
------------------------
|
||||||
|
|
|
@ -515,7 +515,7 @@ static void do_dma_pdma_cb(ESPState *s)
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Extra message out bytes received: update cmdfifo_cdb_offset
|
* Extra message out bytes received: update cmdfifo_cdb_offset
|
||||||
* and then switch to commmand phase
|
* and then switch to command phase
|
||||||
*/
|
*/
|
||||||
s->cmdfifo_cdb_offset = fifo8_num_used(&s->cmdfifo);
|
s->cmdfifo_cdb_offset = fifo8_num_used(&s->cmdfifo);
|
||||||
s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
|
s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
|
||||||
|
@ -627,7 +627,7 @@ static void esp_do_dma(ESPState *s)
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Extra message out bytes received: update cmdfifo_cdb_offset
|
* Extra message out bytes received: update cmdfifo_cdb_offset
|
||||||
* and then switch to commmand phase
|
* and then switch to command phase
|
||||||
*/
|
*/
|
||||||
s->cmdfifo_cdb_offset = fifo8_num_used(&s->cmdfifo);
|
s->cmdfifo_cdb_offset = fifo8_num_used(&s->cmdfifo);
|
||||||
s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
|
s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
|
||||||
|
@ -738,7 +738,7 @@ static void esp_do_nodma(ESPState *s)
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Extra message out bytes received: update cmdfifo_cdb_offset
|
* Extra message out bytes received: update cmdfifo_cdb_offset
|
||||||
* and then switch to commmand phase
|
* and then switch to command phase
|
||||||
*/
|
*/
|
||||||
s->cmdfifo_cdb_offset = fifo8_num_used(&s->cmdfifo);
|
s->cmdfifo_cdb_offset = fifo8_num_used(&s->cmdfifo);
|
||||||
s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
|
s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
|
||||||
|
|
|
@ -561,7 +561,7 @@ typedef void (*ReplayRamDiscard)(MemoryRegionSection *section, void *opaque);
|
||||||
* A #RamDiscardManager coordinates which parts of specific RAM #MemoryRegion
|
* A #RamDiscardManager coordinates which parts of specific RAM #MemoryRegion
|
||||||
* regions are currently populated to be used/accessed by the VM, notifying
|
* regions are currently populated to be used/accessed by the VM, notifying
|
||||||
* after parts were discarded (freeing up memory) and before parts will be
|
* after parts were discarded (freeing up memory) and before parts will be
|
||||||
* populated (consuming memory), to be used/acessed by the VM.
|
* populated (consuming memory), to be used/accessed by the VM.
|
||||||
*
|
*
|
||||||
* A #RamDiscardManager can only be set for a RAM #MemoryRegion while the
|
* A #RamDiscardManager can only be set for a RAM #MemoryRegion while the
|
||||||
* #MemoryRegion isn't mapped yet; it cannot change while the #MemoryRegion is
|
* #MemoryRegion isn't mapped yet; it cannot change while the #MemoryRegion is
|
||||||
|
@ -585,7 +585,7 @@ typedef void (*ReplayRamDiscard)(MemoryRegionSection *section, void *opaque);
|
||||||
* Listeners are called in multiples of the minimum granularity (unless it
|
* Listeners are called in multiples of the minimum granularity (unless it
|
||||||
* would exceed the registered range) and changes are aligned to the minimum
|
* would exceed the registered range) and changes are aligned to the minimum
|
||||||
* granularity within the #MemoryRegion. Listeners have to prepare for memory
|
* granularity within the #MemoryRegion. Listeners have to prepare for memory
|
||||||
* becomming discarded in a different granularity than it was populated and the
|
* becoming discarded in a different granularity than it was populated and the
|
||||||
* other way around.
|
* other way around.
|
||||||
*/
|
*/
|
||||||
struct RamDiscardManagerClass {
|
struct RamDiscardManagerClass {
|
||||||
|
@ -1247,7 +1247,7 @@ void memory_region_init_ram_flags_nomigrate(MemoryRegion *mr,
|
||||||
Error **errp);
|
Error **errp);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* memory_region_init_resizeable_ram: Initialize memory region with resizeable
|
* memory_region_init_resizeable_ram: Initialize memory region with resizable
|
||||||
* RAM. Accesses into the region will
|
* RAM. Accesses into the region will
|
||||||
* modify memory directly. Only an initial
|
* modify memory directly. Only an initial
|
||||||
* portion of this RAM is actually used.
|
* portion of this RAM is actually used.
|
||||||
|
|
|
@ -321,7 +321,7 @@
|
||||||
# },
|
# },
|
||||||
# "backend-features": {
|
# "backend-features": {
|
||||||
# "dev-features": [
|
# "dev-features": [
|
||||||
# "VHOST_USER_F_PROTOCOL_FEATURES: Vhost-user protocol features negotation supported",
|
# "VHOST_USER_F_PROTOCOL_FEATURES: Vhost-user protocol features negotiation supported",
|
||||||
# "VIRTIO_NET_F_GSO: Handling GSO-type packets supported",
|
# "VIRTIO_NET_F_GSO: Handling GSO-type packets supported",
|
||||||
# "VIRTIO_NET_F_CTRL_MAC_ADDR: MAC address set through control channel",
|
# "VIRTIO_NET_F_CTRL_MAC_ADDR: MAC address set through control channel",
|
||||||
# "VIRTIO_NET_F_GUEST_ANNOUNCE: Driver sending gratuitous packets supported",
|
# "VIRTIO_NET_F_GUEST_ANNOUNCE: Driver sending gratuitous packets supported",
|
||||||
|
@ -394,7 +394,7 @@
|
||||||
# },
|
# },
|
||||||
# "host-features": {
|
# "host-features": {
|
||||||
# "dev-features": [
|
# "dev-features": [
|
||||||
# "VHOST_USER_F_PROTOCOL_FEATURES: Vhost-user protocol features negotation supported",
|
# "VHOST_USER_F_PROTOCOL_FEATURES: Vhost-user protocol features negotiation supported",
|
||||||
# "VIRTIO_NET_F_GSO: Handling GSO-type packets supported",
|
# "VIRTIO_NET_F_GSO: Handling GSO-type packets supported",
|
||||||
# "VIRTIO_NET_F_CTRL_MAC_ADDR: MAC address set through control channel",
|
# "VIRTIO_NET_F_CTRL_MAC_ADDR: MAC address set through control channel",
|
||||||
# "VIRTIO_NET_F_GUEST_ANNOUNCE: Driver sending gratuitous packets supported",
|
# "VIRTIO_NET_F_GUEST_ANNOUNCE: Driver sending gratuitous packets supported",
|
||||||
|
|
|
@ -139,7 +139,7 @@ SRST
|
||||||
interleave requirements before enabling the memory devices.
|
interleave requirements before enabling the memory devices.
|
||||||
|
|
||||||
``targets.X=target`` provides the mapping to CXL host bridges
|
``targets.X=target`` provides the mapping to CXL host bridges
|
||||||
which may be identified by the id provied in the -device entry.
|
which may be identified by the id provided in the -device entry.
|
||||||
Multiple entries are needed to specify all the targets when
|
Multiple entries are needed to specify all the targets when
|
||||||
the fixed memory window represents interleaved memory. X is the
|
the fixed memory window represents interleaved memory. X is the
|
||||||
target index from 0.
|
target index from 0.
|
||||||
|
@ -362,7 +362,7 @@ SRST
|
||||||
\
|
\
|
||||||
``-numa cpu,node-id=node[,socket-id=x][,core-id=y][,thread-id=z]``
|
``-numa cpu,node-id=node[,socket-id=x][,core-id=y][,thread-id=z]``
|
||||||
\
|
\
|
||||||
``-numa hmat-lb,initiator=node,target=node,hierarchy=hierarchy,data-type=tpye[,latency=lat][,bandwidth=bw]``
|
``-numa hmat-lb,initiator=node,target=node,hierarchy=hierarchy,data-type=type[,latency=lat][,bandwidth=bw]``
|
||||||
\
|
\
|
||||||
``-numa hmat-cache,node-id=node,size=size,level=level[,associativity=str][,policy=str][,line=size]``
|
``-numa hmat-cache,node-id=node,size=size,level=level[,associativity=str][,policy=str][,line=size]``
|
||||||
Define a NUMA node and assign RAM and VCPUs to it. Set the NUMA
|
Define a NUMA node and assign RAM and VCPUs to it. Set the NUMA
|
||||||
|
@ -1785,7 +1785,7 @@ SRST
|
||||||
directory on host is made directly accessible by guest as a pass-through
|
directory on host is made directly accessible by guest as a pass-through
|
||||||
file system by using the 9P network protocol for communication between
|
file system by using the 9P network protocol for communication between
|
||||||
host and guests, if desired even accessible, shared by several guests
|
host and guests, if desired even accessible, shared by several guests
|
||||||
simultaniously.
|
simultaneously.
|
||||||
|
|
||||||
Note that ``-virtfs`` is actually just a convenience shortcut for its
|
Note that ``-virtfs`` is actually just a convenience shortcut for its
|
||||||
generalized form ``-fsdev -device virtio-9p-pci``.
|
generalized form ``-fsdev -device virtio-9p-pci``.
|
||||||
|
|
|
@ -381,7 +381,7 @@ QOSGraphObject *qos_driver_new(QOSGraphNode *node, QOSGraphObject *parent,
|
||||||
* mind: only tests with a path down from the actual test case node (leaf) up
|
* mind: only tests with a path down from the actual test case node (leaf) up
|
||||||
* to the graph's root node are actually executed by the qtest framework. And
|
* to the graph's root node are actually executed by the qtest framework. And
|
||||||
* the qtest framework uses QMP to automatically check which QEMU drivers are
|
* the qtest framework uses QMP to automatically check which QEMU drivers are
|
||||||
* actually currently available, and accordingly qos marks certain pathes as
|
* actually currently available, and accordingly qos marks certain paths as
|
||||||
* 'unavailable' in such cases (e.g. when QEMU was compiled without support for
|
* 'unavailable' in such cases (e.g. when QEMU was compiled without support for
|
||||||
* a certain feature).
|
* a certain feature).
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
static QGuestAllocator *alloc;
|
static QGuestAllocator *alloc;
|
||||||
static char *local_test_path;
|
static char *local_test_path;
|
||||||
|
|
||||||
/* Concatenates the passed 2 pathes. Returned result must be freed. */
|
/* Concatenates the passed 2 paths. Returned result must be freed. */
|
||||||
static char *concat_path(const char* a, const char* b)
|
static char *concat_path(const char* a, const char* b)
|
||||||
{
|
{
|
||||||
return g_build_filename(a, b, NULL);
|
return g_build_filename(a, b, NULL);
|
||||||
|
|
Loading…
Reference in New Issue