Skip to content

Commit 9277d81

Browse files
scoppm215
authored andcommitted
docs: Grammar and spelling fixes
Signed-off-by: Ville Skyttä <[email protected]> Reviewed-by: Peter Maydell <[email protected]> Reviewed-by: Eric Blake <[email protected]> Message-id: [email protected] Signed-off-by: Peter Maydell <[email protected]>
1 parent 68f1b56 commit 9277d81

18 files changed

+22
-21
lines changed

docs/colo-proxy.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ and redirect indev's packet to filter.
145145
COLO-compare, we do packet comparing job.
146146
Packets coming from the primary char indev will be sent to outdev.
147147
Packets coming from the secondary char dev will be dropped after comparing.
148-
COLO-comapre need two input chardev and one output chardev:
148+
COLO-compare needs two input chardevs and one output chardev:
149149
primary_in=chardev1-id (source: primary send packet)
150150
secondary_in=chardev2-id (source: secondary send packet)
151151
outdev=chardev3-id

docs/config/mach-virt-graphical.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
# attached to it.
186186
#
187187
# We also create an optical disk, mostly for installation
188-
# purposes: once the guest OS has been succesfully
188+
# purposes: once the guest OS has been successfully
189189
# installed, the guest will no longer boot from optical
190190
# media. If you don't want, or no longer want, to have an
191191
# optical disk in the guest you can safely comment out

docs/config/mach-virt-serial.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
# attached to it.
192192
#
193193
# We also create an optical disk, mostly for installation
194-
# purposes: once the guest OS has been succesfully
194+
# purposes: once the guest OS has been successfully
195195
# installed, the guest will no longer boot from optical
196196
# media. If you don't want, or no longer want, to have an
197197
# optical disk in the guest you can safely comment out

docs/config/q35-emulated.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
# it to that controller so that the guest can use it.
131131
#
132132
# We also create an optical disk, mostly for installation
133-
# purposes: once the guest OS has been succesfully
133+
# purposes: once the guest OS has been successfully
134134
# installed, the guest will no longer boot from optical
135135
# media. If you don't want, or no longer want, to have an
136136
# optical disk in the guest you can safely comment out

docs/config/q35-virtio-graphical.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
# attached to it.
137137
#
138138
# We also create an optical disk, mostly for installation
139-
# purposes: once the guest OS has been succesfully
139+
# purposes: once the guest OS has been successfully
140140
# installed, the guest will no longer boot from optical
141141
# media. If you don't want, or no longer want, to have an
142142
# optical disk in the guest you can safely comment out

docs/config/q35-virtio-serial.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
# attached to it.
142142
#
143143
# We also create an optical disk, mostly for installation
144-
# purposes: once the guest OS has been succesfully
144+
# purposes: once the guest OS has been successfully
145145
# installed, the guest will no longer boot from optical
146146
# media. If you don't want, or no longer want, to have an
147147
# optical disk in the guest you can safely comment out

docs/devel/migration.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ over any transport.
3737
- tcp migration: do the migration using tcp sockets
3838
- unix migration: do the migration using unix sockets
3939
- exec migration: do the migration using the stdin/stdout through a process.
40-
- fd migration: do the migration using an file descriptor that is
40+
- fd migration: do the migration using a file descriptor that is
4141
passed to QEMU. QEMU doesn't care how this file descriptor is opened.
4242

4343
In addition, support is included for migration using RDMA, which

docs/devel/multi-thread-tcg.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ other cores sharing access to the memory. The classic example is the
316316
x86 cmpxchg instruction.
317317

318318
The second type offer a pair of load/store instructions which offer a
319-
guarantee that an region of memory has not been touched between the
319+
guarantee that a region of memory has not been touched between the
320320
load and store instructions. An example of this is ARM's ldrex/strex
321321
pair where the strex instruction will return a flag indicating a
322322
successful store only if no other CPU has accessed the memory region

docs/interop/qcow2.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ in the image file.
326326
It contains pointers to the second level structures which are called refcount
327327
blocks and are exactly one cluster in size.
328328

329-
Given a offset into the image file, the refcount of its cluster can be obtained
330-
as follows:
329+
Given an offset into the image file, the refcount of its cluster can be
330+
obtained as follows:
331331

332332
refcount_block_entries = (cluster_size * 8 / refcount_bits)
333333

@@ -365,7 +365,7 @@ The L1 table has a variable size (stored in the header) and may use multiple
365365
clusters, however it must be contiguous in the image file. L2 tables are
366366
exactly one cluster in size.
367367

368-
Given a offset into the virtual disk, the offset into the image file can be
368+
Given an offset into the virtual disk, the offset into the image file can be
369369
obtained as follows:
370370

371371
l2_entries = (cluster_size / sizeof(uint64_t))

docs/interop/vhost-user.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ Depending on the request type, payload can be:
108108
IOVA: a 64-bit I/O virtual address programmed by the guest
109109
Size: a 64-bit size
110110
User address: a 64-bit user address
111-
Permissions: a 8-bit value:
111+
Permissions: an 8-bit value:
112112
- 0: No access
113113
- 1: Read access
114114
- 2: Write access
115115
- 3: Read/Write access
116-
Type: a 8-bit IOTLB message type:
116+
Type: an 8-bit IOTLB message type:
117117
- 1: IOTLB miss
118118
- 2: IOTLB update
119119
- 3: IOTLB invalidate

docs/memory-hotplug.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ It's also possible to start a guest with memory cold-plugged into the
6262
hotpluggable memory slots. This might seem counterintuitive at first,
6363
but this allows for a lot of flexibility when using the file backend.
6464

65-
In the following command-line example, a 8GB guest is created where 6GB
65+
In the following command-line example, an 8GB guest is created where 6GB
6666
comes from regular RAM, 1GB is a 1GB hugepage page and 256MB is from
6767
2MB pages. Also, the guest has additional memory slots to hotplug more
6868
2GB if needed:

docs/multiseat.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ to its own window so you can see both display devices side-by-side.
6262

6363
For vnc some additional configuration on the command line is needed.
6464
We'll create two vnc server instances, and bind the second one to the
65-
second seat, simliar to input devices:
65+
second seat, similar to input devices:
6666

6767
-display vnc=:1,id=primary \
6868
-display vnc=:2,id=secondary,display=video.2

docs/qemu-block-drivers.texi

+1-1
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ You can create a cloned image from the existing snapshot.
524524
@example
525525
qemu-img create -b sheepdog:///@var{base}#@var{tag} sheepdog:///@var{image}
526526
@end example
527-
where @var{base} is a image name of the source snapshot and @var{tag}
527+
where @var{base} is an image name of the source snapshot and @var{tag}
528528
is its tag name.
529529

530530
You can use an unix socket instead of an inet socket:

docs/qemupciserial.inf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; qemupciserial.inf for QEMU, based on MSPORTS.INF
22

33
; The driver itself is shipped with Windows (serial.sys). This is
4-
; just a inf file to tell windows which pci id the serial pci card
4+
; just an inf file to tell windows which pci id the serial pci card
55
; emulated by qemu has, and to apply a name tag to it which windows
66
; will show in the device manager.
77

docs/specs/acpi_nvdimm.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ for NVDIMM ACPI.
7272

7373
Memory:
7474
QEMU uses BIOS Linker/loader feature to ask BIOS to allocate a memory
75-
page and dynamically patch its into a int32 object named "MEMA" in ACPI.
75+
page and dynamically patch its address into an int32 object named "MEMA"
76+
in ACPI.
7677

7778
This page is RAM-based and it is used to transfer data between _DSM
7879
method and QEMU. If ACPI has control, this pages is owned by ACPI which

docs/specs/ppc-spapr-hcalls.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ calls which are mostly used as a private interface between the firmware
1010
running in the guest and QEMU.
1111

1212
All those hypercalls start at hcall number 0xf000 which correspond
13-
to a implementation specific range in PAPR.
13+
to an implementation specific range in PAPR.
1414

1515
- H_RTAS (0xf000)
1616

docs/specs/tpm.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ swtpm socket --tpmstate dir=/tmp/mytpm1 \
252252
--ctrl type=unixio,path=/tmp/mytpm1/swtpm-sock \
253253
--log level=20 --tpm2
254254

255-
In the 2nd terminal restore the state of the VM using the additonal
255+
In the 2nd terminal restore the state of the VM using the additional
256256
'-incoming' option.
257257

258258
qemu-system-x86_64 -display sdl -accel kvm \

docs/usb2.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ the PIIX3 chipset. The USB 1.1 bus will carry the name "usb-bus.0".
4141

4242
You can use the standard -device switch to add a EHCI controller to
4343
your virtual machine. It is strongly recommended to specify an ID for
44-
the controller so the USB 2.0 bus gets a individual name, for example
44+
the controller so the USB 2.0 bus gets an individual name, for example
4545
'-device usb-ehci,id=ehci". This will give you a USB 2.0 bus named
4646
"ehci.0".
4747

0 commit comments

Comments
 (0)