linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* arch_get_unmapped_area_topdown vs stack reservations
@ 2004-08-17 22:18 Martin J. Bligh
  2004-08-18  6:11 ` Arjan van de Ven
  0 siblings, 1 reply; 4+ messages in thread
From: Martin J. Bligh @ 2004-08-17 22:18 UTC (permalink / raw)
  To: Ingo Molnar, Arjan van de Ven; +Cc: linux-mm mailing list

I worry that the current code will allow us to intrude into the 
reserved stack space with a vma allocation if it's requested at
an address too high up. One could argue that they got what they
asked for ... but not sure we should be letting them do that?

Is the following change acceptable? Not tested yet, but will do
if you're happy with it.

Signed-off-by: Martin J. Bligh <mbligh@aracnet.com>

diff -purN -X /home/mbligh/.diff.exclude /home/linux/views/linux-2.6.8.1-mm1/mm/mmap.c 2.6.8.1-mm1-topdown_fix/mm/mmap.c
--- /home/linux/views/linux-2.6.8.1-mm1/mm/mmap.c	2004-08-17 14:43:07.000000000 -0700
+++ 2.6.8.1-mm1-topdown_fix/mm/mmap.c	2004-08-17 14:52:55.000000000 -0700
@@ -1101,7 +1101,7 @@ arch_get_unmapped_area_topdown(struct fi
 	if (addr) {
 		addr = PAGE_ALIGN(addr);
 		vma = find_vma(mm, addr);
-		if (TASK_SIZE - len >= addr &&
+		if (base - len >= addr &&
 				(!vma || addr + len <= vma->vm_start))
 			return addr;
 	}

--
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/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>

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

end of thread, other threads:[~2004-08-18  6:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-08-17 22:18 arch_get_unmapped_area_topdown vs stack reservations Martin J. Bligh
2004-08-18  6:11 ` Arjan van de Ven
2004-08-18  6:18   ` Martin J. Bligh
2004-08-18  6:36     ` Arjan van de Ven

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