]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
s390x: spelling fixes
authorMichael Tokarev <mjt@tls.msk.ru>
Fri, 14 Jul 2023 11:20:07 +0000 (14:20 +0300)
committerMichael Tokarev <mjt@tls.msk.ru>
Tue, 25 Jul 2023 14:13:45 +0000 (17:13 +0300)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Thomas Huth <thuth@redhat.com>
hw/intc/s390_flic_kvm.c
include/hw/s390x/s390-pci-bus.h
include/hw/s390x/sclp.h
target/s390x/cpu_features.c
target/s390x/cpu_models.c
target/s390x/tcg/fpu_helper.c
target/s390x/tcg/insn-data.h.inc
target/s390x/tcg/translate.c
tests/tcg/s390x/mvc.c

index 4e86d2d43670fbebca04b264966eb29aadd31e82..28364b22d65c7d54026586ee0aabe9747fe00b8d 100644 (file)
@@ -380,7 +380,7 @@ static void kvm_s390_release_adapter_routes(S390FLICState *fs,
  * @size: ignored
  *
  * 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
  */
 static int kvm_flic_save(QEMUFile *f, void *opaque, size_t size,
index e0a9f9385be758bb9af0ed72d4435d2414d30e69..b1bdbeaeb5b473e37bc8cad8746eb263822d9dbd 100644 (file)
@@ -184,7 +184,7 @@ enum ZpciIoatDtype {
  * The following states make up the "configured" meta-state:
  * disabled: device is configured but not enabled; transition between this
  *           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
  * blocked: ignore all DMA and interrupts; transition back to enabled or from
  *          error state via mpcifc
index d3ade40a5a8d1a1b630bf9a96257b00373faf6c3..cf1f2efae2e1d6ab3cdf74527975e6f1cec6e25f 100644 (file)
@@ -87,7 +87,7 @@
  * - we work on a private copy of the SCCB, since there are several length
  *   fields, that would cause a security nightmare if we allow the guest to
  *   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
  * right endianness wrappers.
  */
index ebb155ce1cb57071e1b7e3e1d34af4f82dc66531..d28eb6584564aa3b7f2547701172abd0e5af2a86 100644 (file)
@@ -249,7 +249,7 @@ static void init_groups(void)
 {
     int i;
 
-    /* init all bitmaps from gnerated data initially */
+    /* init all bitmaps from generated data initially */
     for (i = 0; i < ARRAY_SIZE(s390_feature_groups); i++) {
         s390_init_feat_bitmap(s390_feature_groups[i].init,
                               s390_feature_groups[i].feat);
index 42b52afdb4d60484cfd6c99664097dfc56c0f66a..91ce896491f941a7f1351ae981bddc650f592e6a 100644 (file)
@@ -975,7 +975,7 @@ static void register_types(void)
 
     init_ignored_base_feat();
 
-    /* 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);
     for (i = 0; i < ARRAY_SIZE(s390_cpu_defs); i++) {
         s390_init_feat_bitmap(s390_cpu_defs[i].base_init,
index 3d941ed2d282258c3b191c325d5778960f52334c..c329b31261789a651c565497e7ebcfcd4c6b59d9 100644 (file)
@@ -87,7 +87,7 @@ 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.
      * 2. Only traps due to invalid/divbyzero are suppressing. Other traps
      *    are completing, meaning the target register has to be written!
index 86a509b0ac82e0f4ee6bc80424402af4934f84ad..0bfd88d3c3a19ab2497c04119072729e0bc5ebf7 100644 (file)
 /* LOAD LOGICAL HALFWORD RELATIVE LONG */
     C(0xc402, LLHRL,   RIL_b, GIE, 0, ri2, new, r1_32, ld16u, 0)
     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)
     D(0xc00f, LLILF,   RIL_a, EI, 0, i2_32u_shl, 0, r1, mov2, 0, 0)
     D(0xa50c, LLIHH,   RI_a,  Z,  0, i2_16u_shl, 0, r1, mov2, 0, 48)
index 84d76f1cea10513f3a339f050fd139ef76c7b3ac..dc7041e1d87a53b6b3758702c13c25737bbada26 100644 (file)
@@ -429,7 +429,7 @@ static void gen_exception(int excp)
 
 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,
                    offsetof(CPUS390XState, int_pgm_code));
 
index 7ae4c445500c5c0799125704d3b363e294fc2322..b572aa3ced7cfeb93aab8ca3a063263b6d3859e8 100644 (file)
@@ -85,7 +85,7 @@ 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);
     for (i = 0; i < ALLOC_SIZE; i++) {
         if (src[i] != 0xff) {