mirror of https://github.com/xqemu/xqemu.git
misc: Fix new typos in comments and strings
All these typos were found by codespell. sould -> should emperical -> empirical intialization -> initialization successfuly -> successfully gaurantee -> guarantee Fix also another error (before before) in the same context. Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
6064be7912
commit
52f350227f
|
@ -168,7 +168,7 @@ typedef struct QEMU_PACKED VHDXLogEntryHeader {
|
||||||
vhdx_header. If not found in
|
vhdx_header. If not found in
|
||||||
vhdx_header, it is invalid */
|
vhdx_header, it is invalid */
|
||||||
uint64_t flushed_file_offset; /* see spec for full details - this
|
uint64_t flushed_file_offset; /* see spec for full details - this
|
||||||
sould be vhdx file size in bytes */
|
should be vhdx file size in bytes */
|
||||||
uint64_t last_file_offset; /* size in bytes that all allocated
|
uint64_t last_file_offset; /* size in bytes that all allocated
|
||||||
file structures fit into */
|
file structures fit into */
|
||||||
} VHDXLogEntryHeader;
|
} VHDXLogEntryHeader;
|
||||||
|
|
|
@ -199,7 +199,7 @@ Version #1 requires that all server implementations of the protocol must
|
||||||
check this field and register all requests found in the array of commands located
|
check this field and register all requests found in the array of commands located
|
||||||
in the data portion and return an equal number of results in the response.
|
in the data portion and return an equal number of results in the response.
|
||||||
The maximum number of repeats is hard-coded to 4096. This is a conservative
|
The maximum number of repeats is hard-coded to 4096. This is a conservative
|
||||||
limit based on the maximum size of a SEND message along with emperical
|
limit based on the maximum size of a SEND message along with empirical
|
||||||
observations on the maximum future benefit of simultaneous page registrations.
|
observations on the maximum future benefit of simultaneous page registrations.
|
||||||
|
|
||||||
The 'type' field has 12 different command values:
|
The 'type' field has 12 different command values:
|
||||||
|
|
|
@ -53,8 +53,8 @@ static const char *balloon_stat_names[] = {
|
||||||
/*
|
/*
|
||||||
* reset_stats - Mark all items in the stats array as unset
|
* reset_stats - Mark all items in the stats array as unset
|
||||||
*
|
*
|
||||||
* This function needs to be called at device intialization and before
|
* This function needs to be called at device initialization and before
|
||||||
* before updating to a set of newly-generated stats. This will ensure that no
|
* updating to a set of newly-generated stats. This will ensure that no
|
||||||
* stale values stick around in case the guest reports a subset of the supported
|
* stale values stick around in case the guest reports a subset of the supported
|
||||||
* statistics.
|
* statistics.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -756,7 +756,8 @@ static int xen_pt_initfn(PCIDevice *d)
|
||||||
out:
|
out:
|
||||||
memory_listener_register(&s->memory_listener, &address_space_memory);
|
memory_listener_register(&s->memory_listener, &address_space_memory);
|
||||||
memory_listener_register(&s->io_listener, &address_space_io);
|
memory_listener_register(&s->io_listener, &address_space_io);
|
||||||
XEN_PT_LOG(d, "Real physical device %02x:%02x.%d registered successfuly!\n",
|
XEN_PT_LOG(d,
|
||||||
|
"Real physical device %02x:%02x.%d registered successfully!\n",
|
||||||
s->hostaddr.bus, s->hostaddr.slot, s->hostaddr.function);
|
s->hostaddr.bus, s->hostaddr.slot, s->hostaddr.function);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -2494,7 +2494,7 @@ static int qemu_rdma_close(void *opaque)
|
||||||
* @size == 0 :
|
* @size == 0 :
|
||||||
* A 'hint' or 'advice' that means that we wish to speculatively
|
* A 'hint' or 'advice' that means that we wish to speculatively
|
||||||
* and asynchronously unregister this memory. In this case, there is no
|
* and asynchronously unregister this memory. In this case, there is no
|
||||||
* gaurantee that the unregister will actually happen, for example,
|
* guarantee that the unregister will actually happen, for example,
|
||||||
* if the memory is being actively transmitted. Additionally, the memory
|
* if the memory is being actively transmitted. Additionally, the memory
|
||||||
* may be re-registered at any future time if a write within the same
|
* may be re-registered at any future time if a write within the same
|
||||||
* chunk was requested again, even if you attempted to unregister it
|
* chunk was requested again, even if you attempted to unregister it
|
||||||
|
@ -2570,7 +2570,7 @@ static size_t qemu_rdma_save_page(QEMUFile *f, void *opaque,
|
||||||
qemu_rdma_signal_unregister(rdma, index, chunk, 0);
|
qemu_rdma_signal_unregister(rdma, index, chunk, 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* TODO: Synchronous, gauranteed unregistration (should not occur during
|
* TODO: Synchronous, guaranteed unregistration (should not occur during
|
||||||
* fast-path). Otherwise, unregisters will process on the next call to
|
* fast-path). Otherwise, unregisters will process on the next call to
|
||||||
* qemu_rdma_drain_cq()
|
* qemu_rdma_drain_cq()
|
||||||
if (size < 0) {
|
if (size < 0) {
|
||||||
|
|
Loading…
Reference in New Issue