From: Stephen Rothwell Date: Mon, 25 Oct 2021 04:04:13 +0000 (+1100) Subject: x86/fpu: Include vmalloc.h for vzalloc() X-Git-Tag: v5.16-rc1~195^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=868c250bb4639531ff33b2d879fbef39c1d9ed39;p=thirdparty%2Fkernel%2Flinux.git x86/fpu: Include vmalloc.h for vzalloc() Explicitly include that header to avoid build errors when vzalloc() becomes "invisible" to the compiler due to header reorganizations. This is not a problem in the tip tree but occurred when integrating linux-next. [ bp: Commit message. ] Link: https://lore.kernel.org/r/20211025151144.552c60ca@canb.auug.org.au Fixes: 69f6ed1d14c6 ("x86/fpu: Provide infrastructure for KVM FPU cleanup") Signed-off-by: Stephen Rothwell Signed-off-by: Borislav Petkov --- diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c index 290836d1f2a78..8ea306b1bf8ec 100644 --- a/arch/x86/kernel/fpu/core.c +++ b/arch/x86/kernel/fpu/core.c @@ -16,6 +16,7 @@ #include #include +#include #include "context.h" #include "internal.h"