Skip to content

Commit d57eaaa

Browse files
surenbaghdasaryanherrnst
authored andcommitted
mm: disable CONFIG_PER_VMA_LOCK until its fixed
A memory corruption was reported in [1] with bisection pointing to the patch [2] enabling per-VMA locks for x86. Disable per-VMA locks config to prevent this issue while the problem is being investigated. This is expected to be a temporary measure. [1] https://bugzilla.kernel.org/show_bug.cgi?id=217624 [2] https://lore.kernel.org/all/[email protected] Reported-by: Jiri Slaby <[email protected]> Closes: https://lore.kernel.org/all/[email protected]/ Reported-by: Jacob Young <[email protected]> Closes: https://bugzilla.kernel.org/show_bug.cgi?id=217624 Fixes: 0bff0aa ("x86/mm: try VMA lock-based page fault handling first") Cc: [email protected] Signed-off-by: Suren Baghdasaryan <[email protected]>
1 parent e654213 commit d57eaaa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mm/Kconfig

+2-1
Original file line numberDiff line numberDiff line change
@@ -1224,8 +1224,9 @@ config ARCH_SUPPORTS_PER_VMA_LOCK
12241224
def_bool n
12251225

12261226
config PER_VMA_LOCK
1227-
def_bool y
1227+
bool "Enable per-vma locking during page fault handling."
12281228
depends on ARCH_SUPPORTS_PER_VMA_LOCK && MMU && SMP
1229+
depends on BROKEN
12291230
help
12301231
Allow per-vma locking during page fault handling.
12311232

0 commit comments

Comments
 (0)