From: Thomas Huth <thuth@redhat.com>
To: Michael Tokarev <mjt@tls.msk.ru>, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, qemu-s390x <qemu-s390x@nongnu.org>
Subject: Re: [PATCH, trivial 13/29] tree-wide spelling fixes in comments and some messages: s390x
Date: Fri, 14 Jul 2023 13:54:56 +0200 [thread overview]
Message-ID: <dbec4d9b-b3d8-0b39-9be9-2e3fb312b39a@redhat.com> (raw)
In-Reply-To: <20230714113834.1186117-15-mjt@tls.msk.ru>
On 14/07/2023 13.38, Michael Tokarev wrote:
> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> ---
> hw/intc/s390_flic_kvm.c | 2 +-
> include/hw/s390x/s390-pci-bus.h | 2 +-
> include/hw/s390x/sclp.h | 2 +-
> target/s390x/cpu_features.c | 2 +-
> target/s390x/cpu_models.c | 2 +-
> target/s390x/tcg/fpu_helper.c | 2 +-
> target/s390x/tcg/insn-data.h.inc | 2 +-
> target/s390x/tcg/translate.c | 2 +-
> tests/tcg/s390x/mvc.c | 2 +-
> 9 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/hw/intc/s390_flic_kvm.c b/hw/intc/s390_flic_kvm.c
> index 4e86d2d436..28364b22d6 100644
> --- a/hw/intc/s390_flic_kvm.c
> +++ b/hw/intc/s390_flic_kvm.c
> @@ -382,3 +382,3 @@ static void kvm_s390_release_adapter_routes(S390FLICState *fs,
> * Note: Pass buf and len to kernel. Start with one page and
> - * increase until buffer is sufficient or maxium size is
> + * increase until buffer is sufficient or maximum size is
> * reached
> diff --git a/include/hw/s390x/s390-pci-bus.h b/include/hw/s390x/s390-pci-bus.h
> index e0a9f9385b..b1bdbeaeb5 100644
> --- a/include/hw/s390x/s390-pci-bus.h
> +++ b/include/hw/s390x/s390-pci-bus.h
> @@ -186,3 +186,3 @@ enum ZpciIoatDtype {
> * state and enabled via clp enable/disable
> - * enbaled: device is ready for use; transition to disabled via clp disable;
> + * enabled: device is ready for use; transition to disabled via clp disable;
> * may enter an error state
> diff --git a/include/hw/s390x/sclp.h b/include/hw/s390x/sclp.h
> index d3ade40a5a..cf1f2efae2 100644
> --- a/include/hw/s390x/sclp.h
> +++ b/include/hw/s390x/sclp.h
> @@ -89,3 +89,3 @@
> * alter the structure while we parse it. We cannot use ldl_p and friends
> - * either without doing pointer arithmetics
> + * either without doing pointer arithmetic
> * So we have to double check that all users of sclp data structures use the
> diff --git a/target/s390x/cpu_features.c b/target/s390x/cpu_features.c
> index ebb155ce1c..d28eb65845 100644
> --- a/target/s390x/cpu_features.c
> +++ b/target/s390x/cpu_features.c
> @@ -251,3 +251,3 @@ static void init_groups(void)
>
> - /* init all bitmaps from gnerated data initially */
> + /* init all bitmaps from generated data initially */
> for (i = 0; i < ARRAY_SIZE(s390_feature_groups); i++) {
> diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
> index 42b52afdb4..91ce896491 100644
> --- a/target/s390x/cpu_models.c
> +++ b/target/s390x/cpu_models.c
> @@ -977,3 +977,3 @@ static void register_types(void)
>
> - /* init all bitmaps from gnerated data initially */
> + /* init all bitmaps from generated data initially */
> s390_init_feat_bitmap(qemu_max_init, qemu_max_cpu_feat);
> diff --git a/target/s390x/tcg/fpu_helper.c b/target/s390x/tcg/fpu_helper.c
> index 4b7fa58af3..5364372c8b 100644
> --- a/target/s390x/tcg/fpu_helper.c
> +++ b/target/s390x/tcg/fpu_helper.c
> @@ -88,3 +88,3 @@ static void handle_exceptions(CPUS390XState *env, bool XxC, uintptr_t retaddr)
> * FIXME:
> - * 1. Right now, all inexact conditions are inidicated as
> + * 1. Right now, all inexact conditions are indicated as
> * "truncated" (0) and never as "incremented" (1) in the DXC.
> diff --git a/target/s390x/tcg/insn-data.h.inc b/target/s390x/tcg/insn-data.h.inc
> index 457ed25d2f..555c147c7c 100644
> --- a/target/s390x/tcg/insn-data.h.inc
> +++ b/target/s390x/tcg/insn-data.h.inc
> @@ -531,3 +531,3 @@
> C(0xc406, LLGHRL, RIL_b, GIE, 0, ri2, r1, 0, ld16u, 0)
> -/* LOAD LOGICAL IMMEDATE */
> +/* LOAD LOGICAL IMMEDIATE */
> D(0xc00e, LLIHF, RIL_a, EI, 0, i2_32u_shl, 0, r1, mov2, 0, 32)
> diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c
> index 6661b27efa..94c8c1f9aa 100644
> --- a/target/s390x/tcg/translate.c
> +++ b/target/s390x/tcg/translate.c
> @@ -431,3 +431,3 @@ static void gen_program_exception(DisasContext *s, int code)
> {
> - /* Remember what pgm exeption this was. */
> + /* Remember what pgm exception this was. */
> tcg_gen_st_i32(tcg_constant_i32(code), cpu_env,
> diff --git a/tests/tcg/s390x/mvc.c b/tests/tcg/s390x/mvc.c
> index 7ae4c44550..b572aa3ced 100644
> --- a/tests/tcg/s390x/mvc.c
> +++ b/tests/tcg/s390x/mvc.c
> @@ -87,3 +87,3 @@ int main(void)
>
> - /* test if MVC works now correctly accross page boundaries */
> + /* test if MVC works now correctly across page boundaries */
> mvc_256(dst + 4096 - 128, src + 4096 - 128);
Reviewed-by: Thomas Huth <thuth@redhat.com>
next prev parent reply other threads:[~2023-07-14 11:55 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-14 11:38 [PATCH, trivial 00/29] tree-wide spelling fixes in comments and some messages Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 01/29] tree-wide spelling fixes in comments and some messages: block Michael Tokarev
2023-07-14 13:06 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH] treewide: spelling fixes in comments and some strings Michael Tokarev
2023-07-14 11:41 ` Michael Tokarev
2023-07-14 18:22 ` Alex Williamson
2023-07-14 18:50 ` Michael Tokarev
2023-07-14 19:40 ` Alex Williamson
2023-07-14 19:50 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 02/29] tree-wide spelling fixes in comments and some messages: bsd-user Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 03/29] tree-wide spelling fixes in comments and some messages: ui Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 04/29] tree-wide spelling fixes in comments and some messages: util Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 05/29] tree-wide spelling fixes in comments and some messages: tcg Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 06/29] tree-wide spelling fixes in comments and some messages: docs Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 07/29] tree-wide spelling fixes in comments and some messages: hw/9pfs Michael Tokarev
2023-07-14 12:39 ` Christian Schoenebeck
2023-07-14 11:38 ` [PATCH, trivial 08/29] tree-wide spelling fixes in comments and some messages: arm Michael Tokarev
2023-07-14 12:51 ` Peter Maydell
2023-07-14 11:38 ` [PATCH, trivial 09/29] tree-wide spelling fixes in comments and some messages: i386 Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 10/29] tree-wide spelling fixes in comments and some messages: mips Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 11/29] tree-wide spelling fixes in comments and some messages: ppc Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 12/29] tree-wide spelling fixes in comments and some messages: riscv Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 13/29] tree-wide spelling fixes in comments and some messages: s390x Michael Tokarev
2023-07-14 11:54 ` Thomas Huth [this message]
2023-07-14 11:38 ` [PATCH, trivial 14/29] tree-wide spelling fixes in comments and some messages: hexagon Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 15/29] tree-wide spelling fixes in comments and some messages: other architectures Michael Tokarev
2023-07-14 12:49 ` Peter Maydell
2023-07-14 13:14 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 16/29] tree-wide spelling fixes in comments and some messages: hw/net Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 17/29] tree-wide spelling fixes in comments and some messages: hw/pci Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 18/29] tree-wide spelling fixes in comments and some messages: hw/tpm Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 19/29] tree-wide spelling fixes in comments and some messages: hw/usb hw/ide hw/i2c Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 20/29] tree-wide spelling fixes in comments and some messages: hw/display Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 21/29] tree-wide spelling fixes in comments and some messages: xen Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 22/29] tree-wide spelling fixes in comments and some messages: audio Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 23/29] tree-wide spelling fixes in comments and some messages: hw/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 24/29] tree-wide spelling fixes in comments and some messages: migration/ Michael Tokarev
2023-07-14 13:05 ` Fabiano Rosas
2023-07-14 13:10 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 25/29] tree-wide spelling fixes in comments and some messages: include/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 26/29] tree-wide spelling fixes in comments and some messages: scripts/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 27/29] tree-wide spelling fixes in comments and some messages: tests/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 28/29] tree-wide spelling fixes in comments and some messages: qga/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 29/29] tree-wide spelling fixes in comments and some messages: other Michael Tokarev
2023-07-14 12:44 ` [PATCH, trivial 00/29] tree-wide spelling fixes in comments and some messages Peter Maydell
2023-07-14 12:54 ` Michael Tokarev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dbec4d9b-b3d8-0b39-9be9-2e3fb312b39a@redhat.com \
--to=thuth@redhat.com \
--cc=mjt@tls.msk.ru \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).