From: Uros Bizjak Date: Mon, 20 May 2024 08:21:14 +0000 (+0200) Subject: x86/percpu: Enable named address spaces for all capable GCC versions X-Git-Tag: v6.11-rc1~127^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47ff30cc1be7bf426c03ecc84371452109b416e4;p=thirdparty%2Fkernel%2Flinux.git x86/percpu: Enable named address spaces for all capable GCC versions Enable named address spaces also for GCC 6, GCC 7 and GCC 8 releases. These compilers all produce kernel images that boot without problems. Use compile-time test to detect compiler support for named address spaces. The test passes with GCC 6 as the earliest compiler version where the support for named address spaces was introduced. Signed-off-by: Uros Bizjak Signed-off-by: Ingo Molnar Cc: Andy Lutomirski Cc: Josh Poimboeuf Cc: Linus Torvalds Cc: Ard Biesheuvel Link: https://lore.kernel.org/r/20240520082134.121320-1-ubizjak@gmail.com --- diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 9d16fee6bdb89..c9e0a54f469ef 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -2430,7 +2430,8 @@ source "kernel/livepatch/Kconfig" endmenu config CC_HAS_NAMED_AS - def_bool CC_IS_GCC && GCC_VERSION >= 90100 + def_bool $(success,echo 'int __seg_fs fs; int __seg_gs gs;' | $(CC) -x c - -S -o /dev/null) + depends on CC_IS_GCC config CC_HAS_NAMED_AS_FIXED_SANITIZERS def_bool CC_IS_GCC && GCC_VERSION >= 130300