[PATCH trivial 09/21] target/hppa: spelling fixes: Indicies, Truely

Michael Tokarev posted 21 patches 1 year ago
Maintainers: Warner Losh <imp@bsdimp.com>, Kyle Evans <kevans@freebsd.org>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Juan Quintela <quintela@redhat.com>, Peter Xu <peterx@redhat.com>, Fabiano Rosas <farosas@suse.de>, Leonardo Bras <leobras@redhat.com>, "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Jonathan Cameron <jonathan.cameron@huawei.com>, Fan Ni <fan.ni@samsung.com>, David Hildenbrand <david@redhat.com>, Igor Mammedov <imammedo@redhat.com>, Xiao Guangrong <xiaoguangrong.eric@gmail.com>, "Edgar E. Iglesias" <edgar.iglesias@gmail.com>, Alistair Francis <alistair@alistair23.me>, Peter Maydell <peter.maydell@linaro.org>, Jason Wang <jasowang@redhat.com>, Jeuk Kim <jeuk20.kim@samsung.com>, Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, "Maciej S. Szmigiero" <maciej.szmigiero@oracle.com>, Laurent Vivier <laurent@vivier.eu>, Li Zhijian <lizhijian@fujitsu.com>, Richard Henderson <richard.henderson@linaro.org>, Palmer Dabbelt <palmer@dabbelt.com>, Bin Meng <bin.meng@windriver.com>, Weiwei Li <liwei1518@gmail.com>, Daniel Henrique Barboza <dbarboza@ventanamicro.com>, Liu Zhiwei <zhiwei_liu@linux.alibaba.com>, Thomas Huth <thuth@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Michael Tokarev <mjt@tls.msk.ru>
[PATCH trivial 09/21] target/hppa: spelling fixes: Indicies, Truely
Posted by Michael Tokarev 1 year ago
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"
Cc: Richard Henderson <richard.henderson@linaro.org>
---
 target/hppa/cpu.h     | 2 +-
 target/hppa/machine.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/target/hppa/cpu.h b/target/hppa/cpu.h
index cecec59700..80177c0df8 100644
--- a/target/hppa/cpu.h
+++ b/target/hppa/cpu.h
@@ -54,7 +54,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)
diff --git a/target/hppa/machine.c b/target/hppa/machine.c
index 2f8e8cc5a1..15cbc5e6d0 100644
--- a/target/hppa/machine.c
+++ b/target/hppa/machine.c
@@ -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) {
-- 
2.39.2
Re: [PATCH trivial 09/21] target/hppa: spelling fixes: Indicies, Truely
Posted by Richard Henderson 1 year ago
On 11/14/23 08:58, Michael Tokarev wrote:
> 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"
> Cc: Richard Henderson <richard.henderson@linaro.org>
> ---
>   target/hppa/cpu.h     | 2 +-
>   target/hppa/machine.c | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/target/hppa/cpu.h b/target/hppa/cpu.h
> index cecec59700..80177c0df8 100644
> --- a/target/hppa/cpu.h
> +++ b/target/hppa/cpu.h
> @@ -54,7 +54,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)
> diff --git a/target/hppa/machine.c b/target/hppa/machine.c
> index 2f8e8cc5a1..15cbc5e6d0 100644
> --- a/target/hppa/machine.c
> +++ b/target/hppa/machine.c
> @@ -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) {

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~