* [PULL v2 0/4] Trivial patches for 2024-04-02
@ 2024-04-02 10:41 Michael Tokarev
2024-04-02 10:41 ` [PULL 3/4] Fix some typos in documentation (found by codespell) Michael Tokarev
2024-04-02 13:33 ` [PULL v2 0/4] Trivial patches for 2024-04-02 Peter Maydell
0 siblings, 2 replies; 3+ messages in thread
From: Michael Tokarev @ 2024-04-02 10:41 UTC (permalink / raw)
To: qemu-devel; +Cc: Michael Tokarev, qemu-trivial
The following changes since commit 6af9d12c88b9720f209912f6e4b01fefe5906d59:
Merge tag 'migration-20240331-pull-request' of https://gitlab.com/peterx/qemu into staging (2024-04-01 13:12:40 +0100)
are available in the Git repository at:
https://gitlab.com/mjt0k/qemu.git tags/pull-trivial-patches
for you to fetch changes up to 7805132bc30b2619355b10bbfb67217ac838c677:
hmp: Add help information for watchdog action: inject-nmi (2024-04-02 13:38:51 +0300)
----------------------------------------------------------------
trivial patches for 2024-04-02
spelling fixes for the release, minor doc fixes and usb-audio fix.
v2: fix Stefan Weil email
----------------------------------------------------------------
Dayu Liu (1):
hmp: Add help information for watchdog action: inject-nmi
Joonas Kankaala (1):
usb-audio: Fix invalid values in AudioControl descriptors
Philippe Mathieu-Daudé (1):
fpu/softfloat: Remove mention of TILE-Gx target
Stefan Weil (1):
Fix some typos in documentation (found by codespell)
docs/devel/atomics.rst | 2 +-
docs/devel/ci-jobs.rst.inc | 2 +-
docs/devel/clocks.rst | 2 +-
docs/system/i386/sgx.rst | 2 +-
fpu/softfloat-specialize.c.inc | 2 +-
hmp-commands.hx | 2 +-
hw/usb/dev-audio.c | 4 +---
qapi/qom.json | 2 +-
8 files changed, 8 insertions(+), 10 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PULL 3/4] Fix some typos in documentation (found by codespell)
2024-04-02 10:41 [PULL v2 0/4] Trivial patches for 2024-04-02 Michael Tokarev
@ 2024-04-02 10:41 ` Michael Tokarev
2024-04-02 13:33 ` [PULL v2 0/4] Trivial patches for 2024-04-02 Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Michael Tokarev @ 2024-04-02 10:41 UTC (permalink / raw)
To: qemu-devel; +Cc: Stefan Weil, qemu-trivial, Michael Tokarev
From: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
docs/devel/atomics.rst | 2 +-
docs/devel/ci-jobs.rst.inc | 2 +-
docs/devel/clocks.rst | 2 +-
docs/system/i386/sgx.rst | 2 +-
qapi/qom.json | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/devel/atomics.rst b/docs/devel/atomics.rst
index ff9b5ee30c..b77c6e13e1 100644
--- a/docs/devel/atomics.rst
+++ b/docs/devel/atomics.rst
@@ -119,7 +119,7 @@ The only guarantees that you can rely upon in this case are:
ordinary accesses instead cause data races if they are concurrent with
other accesses of which at least one is a write. In order to ensure this,
the compiler will not optimize accesses out of existence, create unsolicited
- accesses, or perform other similar optimzations.
+ accesses, or perform other similar optimizations.
- acquire operations will appear to happen, with respect to the other
components of the system, before all the LOAD or STORE operations
diff --git a/docs/devel/ci-jobs.rst.inc b/docs/devel/ci-jobs.rst.inc
index ec33e6ee2b..be06322279 100644
--- a/docs/devel/ci-jobs.rst.inc
+++ b/docs/devel/ci-jobs.rst.inc
@@ -115,7 +115,7 @@ CI pipeline.
QEMU_JOB_SKIPPED
~~~~~~~~~~~~~~~~
-The job is not reliably successsful in general, so is not
+The job is not reliably successful in general, so is not
currently suitable to be run by default. Ideally this should
be a temporary marker until the problems can be addressed, or
the job permanently removed.
diff --git a/docs/devel/clocks.rst b/docs/devel/clocks.rst
index b2d1148cdb..177ee1c90d 100644
--- a/docs/devel/clocks.rst
+++ b/docs/devel/clocks.rst
@@ -279,7 +279,7 @@ You can change the multiplier and divider of a clock at runtime,
so you can use this to model clock controller devices which
have guest-programmable frequency multipliers or dividers.
-Similary to ``clock_set()``, ``clock_set_mul_div()`` returns ``true`` if
+Similarly to ``clock_set()``, ``clock_set_mul_div()`` returns ``true`` if
the clock state was modified; that is, if the multiplier or the diviser
or both were changed by the call.
diff --git a/docs/system/i386/sgx.rst b/docs/system/i386/sgx.rst
index 0f0a73f758..ab58b29392 100644
--- a/docs/system/i386/sgx.rst
+++ b/docs/system/i386/sgx.rst
@@ -6,7 +6,7 @@ Overview
Intel Software Guard eXtensions (SGX) is a set of instructions and mechanisms
for memory accesses in order to provide security accesses for sensitive
-applications and data. SGX allows an application to use it's pariticular
+applications and data. SGX allows an application to use its particular
address space as an *enclave*, which is a protected area provides confidentiality
and integrity even in the presence of privileged malware. Accesses to the
enclave memory area from any software not resident in the enclave are prevented,
diff --git a/qapi/qom.json b/qapi/qom.json
index 8d4ca8ed92..85e6b4f84a 100644
--- a/qapi/qom.json
+++ b/qapi/qom.json
@@ -802,7 +802,7 @@
#
# @fd: file descriptor name previously passed via 'getfd' command,
# which represents a pre-opened /dev/iommu. This allows the
-# iommufd object to be shared accross several subsystems (VFIO,
+# iommufd object to be shared across several subsystems (VFIO,
# VDPA, ...), and the file descriptor to be shared with other
# process, e.g. DPDK. (default: QEMU opens /dev/iommu by itself)
#
--
2.39.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PULL v2 0/4] Trivial patches for 2024-04-02
2024-04-02 10:41 [PULL v2 0/4] Trivial patches for 2024-04-02 Michael Tokarev
2024-04-02 10:41 ` [PULL 3/4] Fix some typos in documentation (found by codespell) Michael Tokarev
@ 2024-04-02 13:33 ` Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2024-04-02 13:33 UTC (permalink / raw)
To: Michael Tokarev; +Cc: qemu-devel, qemu-trivial
On Tue, 2 Apr 2024 at 11:42, Michael Tokarev <mjt@tls.msk.ru> wrote:
>
> The following changes since commit 6af9d12c88b9720f209912f6e4b01fefe5906d59:
>
> Merge tag 'migration-20240331-pull-request' of https://gitlab.com/peterx/qemu into staging (2024-04-01 13:12:40 +0100)
>
> are available in the Git repository at:
>
> https://gitlab.com/mjt0k/qemu.git tags/pull-trivial-patches
>
> for you to fetch changes up to 7805132bc30b2619355b10bbfb67217ac838c677:
>
> hmp: Add help information for watchdog action: inject-nmi (2024-04-02 13:38:51 +0300)
>
> ----------------------------------------------------------------
> trivial patches for 2024-04-02
>
> spelling fixes for the release, minor doc fixes and usb-audio fix.
>
> v2: fix Stefan Weil email
>
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/9.0
for any user-visible changes.
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-04-02 13:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-02 10:41 [PULL v2 0/4] Trivial patches for 2024-04-02 Michael Tokarev
2024-04-02 10:41 ` [PULL 3/4] Fix some typos in documentation (found by codespell) Michael Tokarev
2024-04-02 13:33 ` [PULL v2 0/4] Trivial patches for 2024-04-02 Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).