From 573ed57b59216365503d9837cd76eb012c069463 Mon Sep 17 00:00:00 2001 From: Stefan Bader Date: Tue, 31 Aug 2010 15:52:27 +0200 Subject: [PATCH] --- yaml --- r: 210402 b: refs/heads/master c: 39aa3cb3e8250db9188a6f1e3fb62ffa1a717678 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/proc/task_mmu.c | 3 ++- trunk/include/linux/mm.h | 6 ++++++ trunk/mm/mlock.c | 6 ------ 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/[refs] b/[refs] index 98f2638099ac..c441ac2cae35 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 26a94e81ded0fcdc0bf96b5fea7343311f1a220b +refs/heads/master: 39aa3cb3e8250db9188a6f1e3fb62ffa1a717678 diff --git a/trunk/fs/proc/task_mmu.c b/trunk/fs/proc/task_mmu.c index 439fc1f1c1c4..271afc48b9a5 100644 --- a/trunk/fs/proc/task_mmu.c +++ b/trunk/fs/proc/task_mmu.c @@ -224,7 +224,8 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma) /* We don't show the stack guard page in /proc/maps */ start = vma->vm_start; if (vma->vm_flags & VM_GROWSDOWN) - start += PAGE_SIZE; + if (!vma_stack_continue(vma->vm_prev, vma->vm_start)) + start += PAGE_SIZE; seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n", start, diff --git a/trunk/include/linux/mm.h b/trunk/include/linux/mm.h index e6b1210772ce..74949fbef8c6 100644 --- a/trunk/include/linux/mm.h +++ b/trunk/include/linux/mm.h @@ -864,6 +864,12 @@ int set_page_dirty(struct page *page); int set_page_dirty_lock(struct page *page); int clear_page_dirty_for_io(struct page *page); +/* Is the vma a continuation of the stack vma above it? */ +static inline int vma_stack_continue(struct vm_area_struct *vma, unsigned long addr) +{ + return vma && (vma->vm_end == addr) && (vma->vm_flags & VM_GROWSDOWN); +} + extern unsigned long move_page_tables(struct vm_area_struct *vma, unsigned long old_addr, struct vm_area_struct *new_vma, unsigned long new_addr, unsigned long len); diff --git a/trunk/mm/mlock.c b/trunk/mm/mlock.c index cbae7c5b9568..b70919ce4f72 100644 --- a/trunk/mm/mlock.c +++ b/trunk/mm/mlock.c @@ -135,12 +135,6 @@ void munlock_vma_page(struct page *page) } } -/* Is the vma a continuation of the stack vma above it? */ -static inline int vma_stack_continue(struct vm_area_struct *vma, unsigned long addr) -{ - return vma && (vma->vm_end == addr) && (vma->vm_flags & VM_GROWSDOWN); -} - static inline int stack_guard_page(struct vm_area_struct *vma, unsigned long addr) { return (vma->vm_flags & VM_GROWSDOWN) &&