arch/x86/kernel/cpu/mtrr/mtrr.c includes linux/kvm_para.h for historical reasons. The include was needed for kvm_para_available() check in mtrr_trim_uncached_memory(), but that usage was removed by commit bf3647c44bc7 ("x86: tone down mtrr_trim_uncached_memory() warning"). Drop the stale linux/kvm_para.h include. This also removes the need for explicit linux/types.h workaround that existed only because kvm_para.h depended on it. Suggested-by: Sean Christopherson Signed-off-by: WEI-HONG, YE <1234567weewee457@gmail.com> --- v1...v2: https://lore.kernel.org/all/20260505065849.81691-1-1234567weewee457@gmail.com - Drop the stale linux/kvm_para.h include from mtrr.c instead of adding linux/types to asm/kvm_para.h, as suggested by Sean. arch/x86/kernel/cpu/mtrr/mtrr.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/x86/kernel/cpu/mtrr/mtrr.c b/arch/x86/kernel/cpu/mtrr/mtrr.c index 4b3d492afe17..db5bf4adfd28 100644 --- a/arch/x86/kernel/cpu/mtrr/mtrr.c +++ b/arch/x86/kernel/cpu/mtrr/mtrr.c @@ -18,10 +18,7 @@ System Programming Guide; Section 9.11. (1997 edition - PPro). */ -#include /* FIXME: kvm_para.h needs this */ - #include -#include #include #include #include -- 2.48.1