Skip to content

Commit

Permalink
target/hppa: spelling fixes: Indicies, Truely
Browse files Browse the repository at this point in the history
Fixes: bb67ec3 "target/hppa: Include PSW_P in tb flags and mmu index"
Fixes: d7553f3 "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>
  • Loading branch information
Michael Tokarev committed Nov 15, 2023
1 parent 51464c5 commit 385b328
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion target/hppa/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion target/hppa/machine.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 385b328

Please sign in to comment.