Re: [PATCH v6 0/5] x86/cpufeatures: Automatically generate required and disabled feature masks
From: Ingo Molnar
Date: Fri Feb 28 2025 - 04:29:40 EST
* Xin Li (Intel) <xin@xxxxxxxxx> wrote:
> The x86 build process first generates required and disabled feature
> masks based on current build config, and then uses these generated
> masks to compile the source code. When a CPU feature is not enabled
> in a build config, e.g., when CONFIG_X86_FRED=n, its feature disable
> flag, i.e., DISABLE_FRED, needs to be properly defined and added to
> a specific disabled CPU features mask in <asm/disabled-features.h>,
> as the following patch does:
> https://lore.kernel.org/all/20231205105030.8698-8-xin3.li@xxxxxxxxx/.
> As a result, the FRED feature bit is surely cleared in the generated
> kernel binary when CONFIG_X86_FRED=n.
>
> Recently there is another case to repeat the same exercise for the
> AMD SEV-SNP CPU feature:
> https://lore.kernel.org/all/20240126041126.1927228-2-michael.roth@xxxxxxx/.
> https://lore.kernel.org/all/20240126041126.1927228-23-michael.roth@xxxxxxx/.
>
> It was one thing when there were four of CPU feature masks, but with
> over 20 it is going to cause mistakes, e.g.,
> https://lore.kernel.org/lkml/aaed79d5-d683-d1bc-7ba1-b33c8d6db618@xxxxxxxx/.
>
> We want to eliminate the stupidly repeated exercise to manually assign
> features to CPU feature words through introducing an AWK script to
> automatically generate a header with required and disabled CPU feature
> masks based on current build config, and this patch set does that.
>
> Link to v5:
> https://lore.kernel.org/lkml/20250106070727.3211006-1-xin@xxxxxxxxx/
>
>
> H. Peter Anvin (Intel) (3):
> x86/cpufeatures: Rename X86_CMPXCHG64 to X86_CX8
> x86/cpufeatures: Add {required,disabled} feature configs
> x86/cpufeatures: Generate a feature mask header based on build config
>
> Xin Li (Intel) (2):
> x86/cpufeatures: Remove {disabled,required}-features.h
> x86/cpufeatures: Use AWK to generate {REQUIRED|DISABLED}_MASK_BIT_SET
> 24 files changed, 320 insertions(+), 634 deletions(-)
Very nice!
Reviewed-by: Ingo Molnar <mingo@xxxxxxxxxx>
Thanks,
Ingo