From: Lukas Bulwahn Date: Mon, 16 Jun 2025 10:04:32 +0000 (+0200) Subject: x86/its: Fix an ifdef typo in its_alloc() X-Git-Tag: v6.16-rc3~2^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c902383f2da91cba3821b73aa6edd49f4db6023;p=thirdparty%2Fkernel%2Flinux.git x86/its: Fix an ifdef typo in its_alloc() Commit a82b26451de1 ("x86/its: explicitly manage permissions for ITS pages") reworks its_alloc() and introduces a typo in an ifdef conditional, referring to CONFIG_MODULE instead of CONFIG_MODULES. Fix this typo in its_alloc(). Fixes: a82b26451de1 ("x86/its: explicitly manage permissions for ITS pages") Signed-off-by: Lukas Bulwahn Signed-off-by: Dave Hansen Link: https://lore.kernel.org/all/20250616100432.22941-1-lukas.bulwahn%40redhat.com --- diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c index 6455f7f751b31..9ae80fa904a23 100644 --- a/arch/x86/kernel/alternative.c +++ b/arch/x86/kernel/alternative.c @@ -228,7 +228,7 @@ static void *its_alloc(void) struct its_array *pages = &its_pages; void *page; -#ifdef CONFIG_MODULE +#ifdef CONFIG_MODULES if (its_mod) pages = &its_mod->arch.its_pages; #endif