Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283018
b: refs/heads/master
c: 6bd4837
h: refs/heads/master
v: v3
  • Loading branch information
KOSAKI Motohiro authored and Linus Torvalds committed Jan 11, 2012
1 parent 162c1f7 commit 56a9c2e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 29 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 948f017b093a9baac23855fcd920d3a970b71bb6
refs/heads/master: 6bd4837de96e7d9f9bf33e59117c24fc230862ac
36 changes: 8 additions & 28 deletions trunk/mm/mmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1603,39 +1603,19 @@ struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)

EXPORT_SYMBOL(find_vma);

/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
/*
* Same as find_vma, but also return a pointer to the previous VMA in *pprev.
* Note: pprev is set to NULL when return value is NULL.
*/
struct vm_area_struct *
find_vma_prev(struct mm_struct *mm, unsigned long addr,
struct vm_area_struct **pprev)
{
struct vm_area_struct *vma = NULL, *prev = NULL;
struct rb_node *rb_node;
if (!mm)
goto out;

/* Guard against addr being lower than the first VMA */
vma = mm->mmap;

/* Go through the RB tree quickly. */
rb_node = mm->mm_rb.rb_node;

while (rb_node) {
struct vm_area_struct *vma_tmp;
vma_tmp = rb_entry(rb_node, struct vm_area_struct, vm_rb);

if (addr < vma_tmp->vm_end) {
rb_node = rb_node->rb_left;
} else {
prev = vma_tmp;
if (!prev->vm_next || (addr < prev->vm_next->vm_end))
break;
rb_node = rb_node->rb_right;
}
}
struct vm_area_struct *vma;

out:
*pprev = prev;
return prev ? prev->vm_next : vma;
vma = find_vma(mm, addr);
*pprev = vma ? vma->vm_prev : NULL;
return vma;
}

/*
Expand Down

0 comments on commit 56a9c2e

Please sign in to comment.