]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
target/hppa: spelling fixes: Indicies, Truely
authorMichael Tokarev <mjt@tls.msk.ru>
Tue, 14 Nov 2023 16:09:54 +0000 (19:09 +0300)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 15 Nov 2023 08:59:54 +0000 (11:59 +0300)
Fixes: bb67ec32a0bb "target/hppa: Include PSW_P in tb flags and mmu index"
Fixes: d7553f3591bb "target/hppa: Populate an interval tree with valid tlb entries"
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target/hppa/cpu.h
target/hppa/machine.c

index bcfed04f7ce11d98f04b38124638e3dbff5f7e34..8be45c69c99ab53e5da3d9d6be304e082a14e2e5 100644 (file)
@@ -56,7 +56,7 @@
          1 << MMU_PL2_IDX    | 1 << MMU_PL2_P_IDX    |  \
          1 << MMU_USER_IDX   | 1 << MMU_USER_P_IDX)
 
-/* Indicies to flush for access_id changes. */
+/* Indices to flush for access_id changes. */
 #define HPPA_MMU_FLUSH_P_MASK \
         (1 << MMU_KERNEL_P_IDX | 1 << MMU_PL1_P_IDX  |  \
          1 << MMU_PL2_P_IDX    | 1 << MMU_USER_P_IDX)
index 2f8e8cc5a1153b24cb148cdc8ad2dec6b13cd7d0..15cbc5e6d037afe531a76217ab254f758e9bd5ef 100644 (file)
@@ -129,7 +129,7 @@ static int tlb_post_load(void *opaque, int version_id)
 
     /*
      * Re-create the interval tree from the valid entries.
-     * Truely invalid entries should have start == end == 0.
+     * Truly invalid entries should have start == end == 0.
      * Otherwise it should be the in-flight tlb_partial entry.
      */
     for (uint32_t i = 0; i < ARRAY_SIZE(env->tlb); ++i) {