public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Don't mlock guardpage if the stack is growing up
@ 2011-05-08 18:55 Mikulas Patocka
  2011-05-08 20:12 ` Hugh Dickins
  2011-05-08 21:47 ` Linus Torvalds
  0 siblings, 2 replies; 25+ messages in thread
From: Mikulas Patocka @ 2011-05-08 18:55 UTC (permalink / raw)
  To: linux-kernel, linux-parisc, Linus Torvalds; +Cc: Hugh Dickins, Oleg Nesterov

Don't mlock guardpage if the stack is growing up

Linux kernel excludes guard page when performing mlock on a VMA with 
down-growing stack. However, some architectures have up-growing stack and 
locking the guard page should be excluded in this case too.

This patch fixes lvm2 on PA-RISC (and possibly other architectures with 
up-growing stack). lvm2 calculates the number of used pages when locking 
and when unlocking and reports an internal error if the numbers mismatch. 
On PA-RISC, the kernel would incorrectly attempt to mlock the stack guard 
page, this causes allocation of one more page and internal error in lvm2.

Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>

---
 include/linux/mm.h |    6 ++++++
 mm/memory.c        |   21 ++++++++++++---------
 2 files changed, 18 insertions(+), 9 deletions(-)

Index: linux-2.6.39-rc6-fast/include/linux/mm.h
===================================================================
--- linux-2.6.39-rc6-fast.orig/include/linux/mm.h	2011-05-07 05:59:51.000000000 +0200
+++ linux-2.6.39-rc6-fast/include/linux/mm.h	2011-05-07 05:59:52.000000000 +0200
@@ -1016,6 +1016,12 @@ static inline int vma_stack_continue(str
 	return vma && (vma->vm_end == addr) && (vma->vm_flags & VM_GROWSDOWN);
 }
 
+/* Is the vma a continuation of the stack vma below it? */
+static inline int vma_stack_growsup_continue(struct vm_area_struct *vma, unsigned long addr)
+{
+	return vma && (vma->vm_start == addr) && (vma->vm_flags & VM_GROWSUP);
+}
+
 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);
Index: linux-2.6.39-rc6-fast/mm/memory.c
===================================================================
--- linux-2.6.39-rc6-fast.orig/mm/memory.c	2011-05-07 05:59:51.000000000 +0200
+++ linux-2.6.39-rc6-fast/mm/memory.c	2011-05-07 05:59:52.000000000 +0200
@@ -1412,9 +1412,12 @@ no_page_table:
 
 static inline int stack_guard_page(struct vm_area_struct *vma, unsigned long addr)
 {
-	return (vma->vm_flags & VM_GROWSDOWN) &&
+	return ((vma->vm_flags & VM_GROWSDOWN) &&
 		(vma->vm_start == addr) &&
-		!vma_stack_continue(vma->vm_prev, addr);
+		!vma_stack_continue(vma->vm_prev, addr)) ||
+	       ((vma->vm_flags & VM_GROWSUP) &&
+		(vma->vm_end == addr + PAGE_SIZE) &&
+		!vma_stack_growsup_continue(vma->vm_next, addr + PAGE_SIZE));
 }
 
 /**
@@ -1551,18 +1554,18 @@ int __get_user_pages(struct task_struct 
 			continue;
 		}
 
-		/*
-		 * If we don't actually want the page itself,
-		 * and it's the stack guard page, just skip it.
-		 */
-		if (!pages && stack_guard_page(vma, start))
-			goto next_page;
-
 		do {
 			struct page *page;
 			unsigned int foll_flags = gup_flags;
 
 			/*
+			 * If we don't actually want the page itself,
+			 * and it's the stack guard page, just skip it.
+			 */
+			if (!pages && stack_guard_page(vma, start))
+				goto next_page;
+
+			/*
 			 * If we have a pending SIGKILL, don't keep faulting
 			 * pages and potentially allocating memory.
 			 */

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2011-05-15 22:18 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-08 18:55 [PATCH] Don't mlock guardpage if the stack is growing up Mikulas Patocka
2011-05-08 20:12 ` Hugh Dickins
2011-05-09 11:12   ` Mikulas Patocka
2011-05-09 15:57     ` Linus Torvalds
2011-05-09 22:07       ` Linus Torvalds
2011-05-09 22:19         ` James Bottomley
2011-05-09 22:31           ` Linus Torvalds
2011-05-09 22:53             ` Tony Luck
2011-05-09 22:58               ` Linus Torvalds
2011-05-09 23:08                 ` Tony Luck
2011-05-09 23:17                   ` Linus Torvalds
2011-05-09 23:25                     ` Linus Torvalds
2011-05-10  4:12                       ` James Bottomley
2011-05-09 22:26         ` Mikulas Patocka
2011-05-15 22:18           ` Mikulas Patocka
2011-05-08 21:47 ` Linus Torvalds
2011-05-09 11:01   ` Mikulas Patocka
2011-05-09 11:43     ` Zdenek Kabelac
2011-05-09 21:08       ` Alasdair G Kergon
2011-05-09 22:45       ` Matthew Wilcox
2011-05-09 22:56         ` Linus Torvalds
2011-05-10 22:57           ` Alasdair G Kergon
2011-05-11  8:42             ` Milan Broz
2011-05-12  2:12               ` Linus Torvalds
2011-05-12  9:06                 ` Zdenek Kabelac

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox