aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@shadowen.org>2004-09-02 20:22:55 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-09-02 20:22:55 -0700
commit4614ad37be59ea62e32fc612dbe3478e70a24c4a (patch)
tree7decde95d6f2b84e176b9fc82a32d0175f9065f3 /mm
parent5fcfe5ea7a3b0f70a54dc512e057e493b7aa1399 (diff)
downloadhistory-4614ad37be59ea62e32fc612dbe3478e70a24c4a.tar.gz
[PATCH] ppc64: topdown support
Recent patches introduced a top down user process address space allocation policy; further patches enable this for ppc64. Although these work correctly for normal maps, the topdown algorithm does not take into account stringent mixing constraints for small and large pages on this architecture. These patches introduce a ppc64 specific arch_get_unused_area_topdown() variant. The first introduces infrastructure to allow replacement of the generic arch_get_unused_area_topdown() and the second utilises this infrastructure. In this patch I have followed the pattern set by the arch_get_unused_area() using HAVE_ARCH_UNMAPPED_AREA_TOPDOWN to be consistent. However, it would also be possible to simply have a ppc64_get_unused_area_topdown() in the arch/ppc64/mm/mmap.c or to use weak bindings. This patch: Allow an architecture to override the default definition of arch_get_unmapped_area_topdown(). Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/mmap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/mmap.c b/mm/mmap.c
index ed19f6aa8a01f0..6738d1b397bce4 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1106,6 +1106,7 @@ void arch_unmap_area(struct vm_area_struct *area)
* This mmap-allocator allocates new areas top-down from below the
* stack's low limit (the base):
*/
+#ifndef HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
unsigned long
arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
const unsigned long len, const unsigned long pgoff,
@@ -1190,6 +1191,7 @@ fail:
return addr;
}
+#endif
void arch_unmap_area_topdown(struct vm_area_struct *area)
{