[PATCH] x86/mm/tlb: fix error word 'clleared' to 'cleared'

Xin Hao posted 1 patch 1 year, 6 months ago
There is a newer version of this series
arch/x86/include/asm/tlbflush.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] x86/mm/tlb: fix error word 'clleared' to 'cleared'
Posted by Xin Hao 1 year, 6 months ago
Just correct the wrong word 'clleared' to 'cleared'

Fixes: c9fe66560bf2 ("mm/mprotect: do not flush when not required architecturally")
Signed-off-by: Xin Hao <xhao@linux.alibaba.com>
---
 arch/x86/include/asm/tlbflush.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/tlbflush.h b/arch/x86/include/asm/tlbflush.h
index cda3118f3b27..c80a15ef0cbc 100644
--- a/arch/x86/include/asm/tlbflush.h
+++ b/arch/x86/include/asm/tlbflush.h
@@ -291,7 +291,7 @@ static inline bool pte_flags_need_flush(unsigned long oldflags,
 		diff &= ~_PAGE_ACCESSED;
 
 	/*
-	 * Did any of the 'flush_on_clear' flags was clleared set from between
+	 * Did any of the 'flush_on_clear' flags was cleared set from between
 	 * 'oldflags' and 'newflags'?
 	 */
 	if (diff & oldflags & flush_on_clear)
-- 
2.31.0
Re: [PATCH] x86/mm/tlb: fix error word 'clleared' to 'cleared'
Posted by Peter Zijlstra 1 year, 6 months ago
On Wed, Sep 28, 2022 at 11:11:09PM +0800, Xin Hao wrote:
> Just correct the wrong word 'clleared' to 'cleared'
> 
> Fixes: c9fe66560bf2 ("mm/mprotect: do not flush when not required architecturally")

Please, don't ever use Fixes on a comment.
Re: [PATCH] x86/mm/tlb: fix error word 'clleared' to 'cleared'
Posted by haoxin 1 year, 6 months ago
在 2022/9/29 下午4:52, Peter Zijlstra 写道:
> On Wed, Sep 28, 2022 at 11:11:09PM +0800, Xin Hao wrote:
>> Just correct the wrong word 'clleared' to 'cleared'
>>
>> Fixes: c9fe66560bf2 ("mm/mprotect: do not flush when not required architecturally")
> Please, don't ever use Fixes on a comment.
Get it, Thanks.