2022-06-30 09:55:49

by Zhang Jiaming

[permalink] [raw]
Subject: [PATCH] KVM: MIPS/MMU: Fix spelling mistake

Change 'writeable' to 'writable'.

Signed-off-by: Zhang Jiaming <[email protected]>
---
arch/mips/kvm/mmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/kvm/mmu.c b/arch/mips/kvm/mmu.c
index 1bfd1b501d82..833e5dd97d27 100644
--- a/arch/mips/kvm/mmu.c
+++ b/arch/mips/kvm/mmu.c
@@ -541,7 +541,7 @@ static int _kvm_mips_map_page_fast(struct kvm_vcpu *vcpu, unsigned long gpa,
goto out;
}

- /* Track dirtying of writeable pages */
+ /* Track dirtying of writable pages */
set_pte(ptep, pte_mkdirty(*ptep));
pfn = pte_pfn(*ptep);
mark_page_dirty(kvm, gfn);
--
2.34.1


2022-06-30 12:22:34

by Jim Mattson

[permalink] [raw]
Subject: Re: [PATCH] KVM: MIPS/MMU: Fix spelling mistake

On Thu, Jun 30, 2022 at 1:59 AM Zhang Jiaming <[email protected]> wrote:
>
> Change 'writeable' to 'writable'.
>
> Signed-off-by: Zhang Jiaming <[email protected]>

Writeable is generally accepted as an alternative spelling of
writable. You're fighting a losing battle.