]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
Merge tag 'kbuild-7.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild...
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 14 Jun 2026 23:31:15 +0000 (05:01 +0530)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 14 Jun 2026 23:31:15 +0000 (05:01 +0530)
Pull Kbuild / Kconfig updates from Nathan Chancellor:
 "Kbuild:

   - Remove broken module linking exclusion for BTF

   - Add documentation around how offset header files work

   - Include unstripped vDSO libraries in pacman packages

   - Bump minimum version of LLVM for building the kernel to 17.0.1 and
     clean up unnecessary workarounds

   - Use a context manager in run-clang-tools

   - Add dist macro value if present to release tag for RPM packages

   - Detect and report truncated buf_printf() output in modpost

   - Add __llvm_covfun and __llvm_covmap to section whitelist in modpost

   - Support Clang's distributed ThinLTO mode

   - Remove architecture specific configurations for AutoFDO and
     Propeller to ease individual architecture maintenance

  Kconfig:

   - Add kconfig-sym-check target to look for dangling Kconfig symbol
     references and invalid tristate literal values

   - Harden against potential NULL pointer dereference

   - Fix typo in Kconfig test comment"

* tag 'kbuild-7.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux: (31 commits)
  kconfig: tests: fix typo in comment
  kconfig: Remove the architecture specific config for Propeller
  kconfig: Remove the architecture specific config for AutoFDO
  modpost: Add __llvm_covfun and __llvm_covmap to section_white_list
  kconfig: add kconfig-sym-check static checker
  kbuild: Remove unnecessary 'T' modifier in cmd_ar_builtin_fixup
  kbuild: distributed build support for Clang ThinLTO
  kbuild: move vmlinux.a build rule to scripts/Makefile.vmlinux_a
  scripts: modpost: detect and report truncated buf_printf() output
  kbuild: rpm-pkg: append %{?dist} macro to Release tag
  run-clang-tools: run multiprocessing.Pool as context manager
  compiler-clang.h: Drop explicit version number from "all" diagnostic macro
  compiler-clang.h: Remove __cleanup -Wunused-variable workaround
  kbuild: Remove check for broken scoping with clang < 17 in CC_HAS_ASM_GOTO_OUTPUT
  x86/entry/vdso32: Remove conditional omission of '.cfi_offset eflags'
  x86/module: Revert "Deal with GOT based stack cookie load on Clang < 17"
  x86/build: Drop unnecessary '-ffreestanding' addition to KBUILD_CFLAGS
  scripts/Makefile.warn: Drop -Wformat handling for clang < 16
  riscv: Drop tautological condition from TOOLCHAIN_NEEDS_OLD_ISA_SPEC
  riscv: Remove tautological condition from selection of ARCH_SUPPORTS_CFI
  ...

1  2 
Makefile
arch/riscv/Kconfig
arch/x86/Makefile
include/linux/compiler-clang.h
scripts/package/PKGBUILD

diff --cc Makefile
Simple merge
Simple merge
Simple merge
index 527e4e13602057664f8c988162ffde162810fe1f,a105e2e8016c2a1f295add5a219ebef47e1ffee1..e606ed6c7539c9ca790b0ed7617e46e63d79656b
  #define __diag_str(s)         __diag_str1(s)
  #define __diag(s)             _Pragma(__diag_str(clang diagnostic s))
  
- #define __diag_clang_13(s)    __diag(s)
 +#if CONFIG_CLANG_VERSION >= 230000
 +#define __diag_clang_23(s)    __diag(s)
 +#else
 +#define __diag_clang_23(s)
 +#endif
 +
+ #define __diag_clang_all(s)   __diag(s)
  
  #define __diag_ignore_all(option, comment) \
-       __diag_clang(13, ignore, option)
+       __diag_clang(all, ignore, option)
  
  /*
   * clang has horrible behavior with "g" or "rm" constraints for asm
Simple merge