* [PATCH] mm: simplify find_vma_prev
@ 2011-12-09 20:09 kosaki.motohiro
2011-12-09 20:24 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: kosaki.motohiro @ 2011-12-09 20:09 UTC (permalink / raw)
To: linux-mm, linux-kernel
Cc: KOSAKI Motohiro, Andrew Morton, Hugh Dickins, Peter Zijlstra,
Shaohua Li
From: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
commit 297c5eee37 (mm: make the vma list be doubly linked) added
vm_prev member into vm_area_struct. Therefore we can simplify
find_vma_prev() by using it. Also, this change help to imporove
page fault performance becuase it has strong locality of reference.
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
---
mm/mmap.c | 34 ++++++----------------------------
1 files changed, 6 insertions(+), 28 deletions(-)
diff --git a/mm/mmap.c b/mm/mmap.c
index eae90af..955750c 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1605,37 +1605,15 @@ EXPORT_SYMBOL(find_vma);
/* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
struct vm_area_struct *
-find_vma_prev(struct mm_struct *mm, unsigned long addr,
- struct vm_area_struct **pprev)
+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);
+ struct vm_area_struct *vma;
- 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;
- }
- }
+ vma = find_vma(mm, addr);
+ if (vma)
+ *pprev = vma->vm_prev;
-out:
- *pprev = prev;
- return prev ? prev->vm_next : vma;
+ return vma;
}
/*
--
1.7.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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mm: simplify find_vma_prev
2011-12-09 20:09 [PATCH] mm: simplify find_vma_prev kosaki.motohiro
@ 2011-12-09 20:24 ` Andrew Morton
2011-12-09 20:44 ` KOSAKI Motohiro
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2011-12-09 20:24 UTC (permalink / raw)
To: kosaki.motohiro
Cc: linux-mm, linux-kernel, KOSAKI Motohiro, Hugh Dickins,
Peter Zijlstra, Shaohua Li
On Fri, 9 Dec 2011 15:09:04 -0500
kosaki.motohiro@gmail.com wrote:
> From: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
>
> commit 297c5eee37 (mm: make the vma list be doubly linked) added
> vm_prev member into vm_area_struct. Therefore we can simplify
> find_vma_prev() by using it. Also, this change help to imporove
> page fault performance becuase it has strong locality of reference.
>
> Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
> ---
> mm/mmap.c | 34 ++++++----------------------------
> 1 files changed, 6 insertions(+), 28 deletions(-)
>
> diff --git a/mm/mmap.c b/mm/mmap.c
> index eae90af..955750c 100644
> --- a/mm/mmap.c
> +++ b/mm/mmap.c
> @@ -1605,37 +1605,15 @@ EXPORT_SYMBOL(find_vma);
>
> /* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
> struct vm_area_struct *
> -find_vma_prev(struct mm_struct *mm, unsigned long addr,
> - struct vm_area_struct **pprev)
> +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);
> + struct vm_area_struct *vma;
>
> - 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;
> - }
> - }
> + vma = find_vma(mm, addr);
> + if (vma)
> + *pprev = vma->vm_prev;
>
> -out:
> - *pprev = prev;
> - return prev ? prev->vm_next : vma;
> + return vma;
> }
This changes the (undocumented, naturally) interface in disturbing ways.
Currently, *pprev will always be written to. With this change, *pprev
will only be written to if find_vma_prev() returns non-NULL.
Looking through the code, this is mostly benign. But it will cause the
CONFIG_STACK_GROWSUP version of find_extend_vma() to use an
uninitialised stack slot in ways which surely will crash the kernel.
So please have a think about that and fix it up. And please add
documentation for find_vma_prev()'s interface so we don't break it next
time.
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mm: simplify find_vma_prev
2011-12-09 20:24 ` Andrew Morton
@ 2011-12-09 20:44 ` KOSAKI Motohiro
0 siblings, 0 replies; 3+ messages in thread
From: KOSAKI Motohiro @ 2011-12-09 20:44 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm, linux-kernel, KOSAKI Motohiro, Hugh Dickins,
Peter Zijlstra, Shaohua Li
> This changes the (undocumented, naturally) interface in disturbing ways.
>
> Currently, *pprev will always be written to. With this change, *pprev
> will only be written to if find_vma_prev() returns non-NULL.
>
> Looking through the code, this is mostly benign. But it will cause the
> CONFIG_STACK_GROWSUP version of find_extend_vma() to use an
> uninitialised stack slot in ways which surely will crash the kernel.
Weird.
> So please have a think about that and fix it up. And please add
> documentation for find_vma_prev()'s interface so we don't break it next
> time.
Sure thing. Thank you for good spotting!
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-12-09 20:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-09 20:09 [PATCH] mm: simplify find_vma_prev kosaki.motohiro
2011-12-09 20:24 ` Andrew Morton
2011-12-09 20:44 ` KOSAKI Motohiro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).