* [patch 29/57] numa api: fix end of memory handling in mbind
@ 2004-05-22 22:08 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2004-05-22 22:08 UTC (permalink / raw)
To: torvalds; +Cc: linux-mm, akpm, ak
From: Andi Kleen <ak@suse.de>
This fixes a user triggerable crash in mbind() in NUMA API. It would oops
when running into the end of memory. Actually not really oops, because a
oops with the mm sem hold for writing always deadlocks.
---
25-akpm/mm/mempolicy.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -puN mm/mempolicy.c~numa-api-fix-end-of-memory-handling-in-mbind mm/mempolicy.c
--- 25/mm/mempolicy.c~numa-api-fix-end-of-memory-handling-in-mbind 2004-05-22 14:56:26.186110632 -0700
+++ 25-akpm/mm/mempolicy.c 2004-05-22 14:56:26.190110024 -0700
@@ -271,7 +271,7 @@ check_range(struct mm_struct *mm, unsign
if (!first)
return ERR_PTR(-EFAULT);
prev = NULL;
- for (vma = first; vma->vm_start < end; vma = vma->vm_next) {
+ for (vma = first; vma && vma->vm_start < end; vma = vma->vm_next) {
if (!vma->vm_next && vma->vm_end < end)
return ERR_PTR(-EFAULT);
if (prev && prev->vm_end < vma->vm_start)
@@ -317,7 +317,7 @@ static int mbind_range(struct vm_area_st
int err;
err = 0;
- for (; vma->vm_start < end; vma = next) {
+ for (; vma && vma->vm_start < end; vma = next) {
next = vma->vm_next;
if (vma->vm_start < start)
err = split_vma(vma->vm_mm, vma, start, 1);
_
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-05-22 22:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-22 22:08 [patch 29/57] numa api: fix end of memory handling in mbind akpm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox