lvm2: fix mlock() on vectors vma for ARM.

Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Chong.Lu@windriver.com
2014-04-10 16:05:55 +08:00
committed by Martin Jansa
parent 1d0df0362d
commit aa20551442
2 changed files with 32 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ INC_PR = "r4"
S = "${WORKDIR}/LVM2.${PV}"
SRC_URI = "ftp://sources.redhat.com/pub/lvm2/old/LVM2.${PV}.tgz \
file://0001-Replace-CPPFunction-with-rl_completion_func_t.patch \
file://mlock-ignore-vectors-gate_vma.patch \
file://lvm.conf"
PACKAGECONFIG ??= "readline"
@@ -0,0 +1,31 @@
Subject: [PATCH] fix: mlock ignore [vectors] gate_vma
Upstream-Status: Pending
linux kernel has a new commit f9d4861f for [vectors] vma on ARM
"ARM: 7294/1: vectors: use gate_vma for vectors user mapping".
mlock()/munlock() on a gate_vma would cause NOMEM error, so add
[vectors] to _ignore_maps[], as other gate_vmas [vdso]/[vsyscall]
did.
Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
---
lib/mm/memlock.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/mm/memlock.c b/lib/mm/memlock.c
index 8c631bf..a6b1955 100644
--- a/lib/mm/memlock.c
+++ b/lib/mm/memlock.c
@@ -84,6 +84,7 @@ static int _default_priority;
static const char * const _ignore_maps[] = {
"[vdso]",
"[vsyscall]",
+ "[vectors]",
};
/* default blacklist for maps */
--
1.7.9.5