[PATCH] disable unshare(CLONE_VM) for now
sys_unshare() does mmput(new_mm). This is not enough if we have mm->core_waiters. This patch is a temporary fix for soon to be released 2.6.16. Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> [ Checked with Uli: "I'm not planning to use unshare(CLONE_VM). It's not needed for any functionality planned so far. What we (as in Red Hat) need unshare() for now is the filesystem side." ] Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
265a92856b
commit
2d61b86775
1 changed files with 1 additions and 3 deletions
|
@ -1478,9 +1478,7 @@ static int unshare_vm(unsigned long unshare_flags, struct mm_struct **new_mmp)
|
||||||
|
|
||||||
if ((unshare_flags & CLONE_VM) &&
|
if ((unshare_flags & CLONE_VM) &&
|
||||||
(mm && atomic_read(&mm->mm_users) > 1)) {
|
(mm && atomic_read(&mm->mm_users) > 1)) {
|
||||||
*new_mmp = dup_mm(current);
|
return -EINVAL;
|
||||||
if (!*new_mmp)
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue