Message ID | 20220330225642.1163897-2-song@kernel.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | introduce HAVE_ARCH_HUGE_VMALLOC_FLAG for bpf_prog_pack | expand |
On Wed, Mar 30 2022 at 15:56, Song Liu wrote: > We cannot savely enable HAVE_ARCH_HUGE_VMALLOC for X86_64 yet. See [1] > and [2] for more details. Disable it for now. This is not a proper changelog. A changelog has to be self contained and provide all necessary information. Links are there to provide supplementary information, but are not the primary source of information for well documented reasons. Aside of that, please read and follow: https://www.kernel.org/doc/html/latest/process/maintainer-tip.html and update the CC list to comply with the general rules. Thanks, tglx
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ff45a27fc29c..4691d3aef681 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -161,7 +161,6 @@ config X86 select HAVE_ALIGNED_STRUCT_PAGE if SLUB select HAVE_ARCH_AUDITSYSCALL select HAVE_ARCH_HUGE_VMAP if X86_64 || X86_PAE - select HAVE_ARCH_HUGE_VMALLOC if X86_64 select HAVE_ARCH_JUMP_LABEL select HAVE_ARCH_JUMP_LABEL_RELATIVE select HAVE_ARCH_KASAN if X86_64
We cannot savely enable HAVE_ARCH_HUGE_VMALLOC for X86_64 yet. See [1] and [2] for more details. Disable it for now. [1] https://lore.kernel.org/lkml/5bd16e2c06a2df357400556c6ae01bb5d3c5c32a.camel@intel.com/ [2] https://lore.kernel.org/netdev/14444103-d51b-0fb3-ee63-c3f182f0b546@molgen.mpg.de/ Fixes: fac54e2bfb5b ("x86/Kconfig: Select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP") Signed-off-by: Song Liu <song@kernel.org> --- arch/x86/Kconfig | 1 - 1 file changed, 1 deletion(-)