aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2006-09-27 04:50:16 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-09-27 11:26:14 -0400
commit0159b141d8b1f9b9f9cffacae47bec1e05c63b8b (patch)
tree2555ce3afb2307b4532be4247d1f87e06f0071d0 /mm
parent5da6185bca064e35aa73a7c1f27488d2b96434f4 (diff)
[PATCH] NOMMU: Use find_vma() rather than reimplementing a VMA search
Use find_vma() in the NOMMU version of access_process_vm() rather than reimplementing it. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/nommu.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/mm/nommu.c b/mm/nommu.c
index d08acdae0036..00ffa974c90c 100644
--- a/mm/nommu.c
+++ b/mm/nommu.c
@@ -1039,6 +1039,7 @@ unsigned long do_mremap(unsigned long addr,
1039 1039
1040/* 1040/*
1041 * Look up the first VMA which satisfies addr < vm_end, NULL if none 1041 * Look up the first VMA which satisfies addr < vm_end, NULL if none
1042 * - should be called with mm->mmap_sem at least readlocked
1042 */ 1043 */
1043struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) 1044struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
1044{ 1045{
@@ -1213,7 +1214,6 @@ struct page *filemap_nopage(struct vm_area_struct *area,
1213 */ 1214 */
1214int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write) 1215int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
1215{ 1216{
1216 struct vm_list_struct *vml;
1217 struct vm_area_struct *vma; 1217 struct vm_area_struct *vma;
1218 struct mm_struct *mm; 1218 struct mm_struct *mm;
1219 1219
@@ -1227,13 +1227,8 @@ int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, in
1227 down_read(&mm->mmap_sem); 1227 down_read(&mm->mmap_sem);
1228 1228
1229 /* the access must start within one of the target process's mappings */ 1229 /* the access must start within one of the target process's mappings */
1230 for (vml = mm->context.vmlist; vml; vml = vml->next) 1230 vma = find_vma(mm, addr);
1231 if (addr >= vml->vma->vm_start && addr < vml->vma->vm_end) 1231 if (vma) {
1232 break;
1233
1234 if (vml) {
1235 vma = vml->vma;
1236
1237 /* don't overrun this mapping */ 1232 /* don't overrun this mapping */
1238 if (addr + len >= vma->vm_end) 1233 if (addr + len >= vma->vm_end)
1239 len = vma->vm_end - addr; 1234 len = vma->vm_end - addr;