]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
mips: Handle KCOV __init vs inline mismatch
authorKees Cook <kees@kernel.org>
Thu, 17 Jul 2025 23:25:14 +0000 (16:25 -0700)
committerKees Cook <kees@kernel.org>
Tue, 22 Jul 2025 04:42:49 +0000 (21:42 -0700)
When KCOV is enabled all functions get instrumented, unless
the __no_sanitize_coverage attribute is used. To prepare for
__no_sanitize_coverage being applied to __init functions, we
have to handle differences in how GCC's inline optimizations get
resolved. For mips this requires adding the __init annotation on
init_mips_clocksource().

Reviewed-by: Huacai Chen <chenhuacai@loongson.cn>
Link: https://lore.kernel.org/r/20250717232519.2984886-9-kees@kernel.org
Signed-off-by: Kees Cook <kees@kernel.org>
arch/mips/include/asm/time.h

index e855a3611d92245b96dcf2226b4570a04ec07580..5e7193b759f33794e70b999ccaa12a305fe90f7d 100644 (file)
@@ -55,7 +55,7 @@ static inline int mips_clockevent_init(void)
  */
 extern int init_r4k_clocksource(void);
 
-static inline int init_mips_clocksource(void)
+static inline __init int init_mips_clocksource(void)
 {
 #ifdef CONFIG_CSRC_R4K
        return init_r4k_clocksource();