From 324549c06eadc20c4ffcdcf808df2ba459c35ab1 Mon Sep 17 00:00:00 2001 From: You-Li Lin Date: Sat, 27 Jun 2026 13:13:43 +0800 Subject: [PATCH] x86/mm: Fix typo in comment Fix "begining" to "beginning" in a code comment. Signed-off-by: You-Li Lin Acked-by: Borislav Petkov Signed-off-by: Ingo Molnar Signed-off-by: Borislav Petkov (AMD) Link: https://patch.msgid.link/20260627051343.51326-1-lhu540507@gmail.com --- arch/x86/mm/ident_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/mm/ident_map.c b/arch/x86/mm/ident_map.c index bd5d101c5c37..5a15bffe6574 100644 --- a/arch/x86/mm/ident_map.c +++ b/arch/x86/mm/ident_map.c @@ -111,7 +111,7 @@ static int ident_pud_init(struct x86_mapping_info *info, pud_t *pud_page, use_gbpage = info->direct_gbpages; /* Don't use gbpage if it maps more than the requested region. */ - /* at the begining: */ + /* at the beginning: */ use_gbpage &= ((addr & ~PUD_MASK) == 0); /* ... or at the end: */ use_gbpage &= ((next & ~PUD_MASK) == 0);