mm: Move vma_stack_continue into mm.h

So it can be used by all that need to check for that.

Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
这个提交包含在:
Stefan Bader
2010-08-31 15:52:27 +02:00
提交者 Linus Torvalds
父节点 26a94e81de
当前提交 39aa3cb3e8
修改 3 个文件,包含 8 行新增7 行删除

查看文件

@@ -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) &&