Skip to content

Commit 4a042f8

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 bdde8d3 commit 4a042f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mm/Kconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,9 @@ config ARCH_SUPPORTS_PER_VMA_LOCK
11981198
def_bool n
11991199

12001200
config PER_VMA_LOCK
1201-
def_bool y
1201+
bool "Enable per-vma locking during page fault handling."
12021202
depends on ARCH_SUPPORTS_PER_VMA_LOCK && MMU && SMP
1203+
depends on BROKEN
12031204
help
12041205
Allow per-vma locking during page fault handling.
12051206

0 commit comments

Comments
 (0)