From: Brian Behlendorf Date: Wed, 17 Jul 2019 16:14:36 +0000 (-0700) Subject: Fix CONFIG_X86_DEBUG_FPU build failure X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=095b5412b31c07cad5cec74a4eb5ace011c92b27;p=zfs Fix CONFIG_X86_DEBUG_FPU build failure When CONFIG_X86_DEBUG_FPU is defined the alternatives_patched symbol is pulled in as a dependency which results in a build failure. To prevent this undefine CONFIG_X86_DEBUG_FPU to disable the WARN_ON_FPU() macro and rely on WARN_ON_ONCE debugging checks which were previously added. Reviewed-by: Tony Hutter Signed-off-by: Brian Behlendorf Closes #9041 Closes #9049 --- diff --git a/include/linux/simd_x86.h b/include/linux/simd_x86.h index 641f43955..edd456098 100644 --- a/include/linux/simd_x86.h +++ b/include/linux/simd_x86.h @@ -84,6 +84,15 @@ #if defined(_KERNEL) +/* + * Disable the WARN_ON_FPU() macro to prevent additional dependencies + * when providing the kfpu_* functions. Relevant warnings are included + * as appropriate and are unconditionally enabled. + */ +#if defined(CONFIG_X86_DEBUG_FPU) && !defined(KERNEL_EXPORTS_X86_FPU) +#undef CONFIG_X86_DEBUG_FPU +#endif + #if defined(HAVE_KERNEL_FPU_API_HEADER) #include #include