aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mmap.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2007-05-06 17:50:14 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-07 15:12:57 -0400
commit4b1d89290b62bb2db476c94c82cf7442aab440c8 (patch)
tree9db89e2dbf5a0cb222f3d042a5ad167d75df265c /mm/mmap.c
parent06abdfb47ee745a4d79721de24260815ec6bca2b (diff)
get_unmapped_area doesn't need hugetlbfs hacks anymore
Remove the hugetlbfs specific hacks in toplevel get_unmapped_area() now that all archs and hugetlbfs itself do the right thing for both cases. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Acked-by: William Irwin <bill.irwin@oracle.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Richard Henderson <rth@twiddle.net> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: Russell King <rmk+kernel@arm.linux.org.uk> Cc: David Howells <dhowells@redhat.com> Cc: Andi Kleen <ak@suse.de> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: Kyle McMartin <kyle@mcmartin.ca> Cc: Grant Grundler <grundler@parisc-linux.org> Cc: Matthew Wilcox <willy@debian.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Adam Litke <agl@us.ibm.com> Cc: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mmap.c')
-rw-r--r--mm/mmap.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/mm/mmap.c b/mm/mmap.c
index a6b7c796352b..52646d61ff69 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1382,22 +1382,6 @@ get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
1382 if (addr & ~PAGE_MASK) 1382 if (addr & ~PAGE_MASK)
1383 return -EINVAL; 1383 return -EINVAL;
1384 1384
1385 if (file && is_file_hugepages(file)) {
1386 /*
1387 * Check if the given range is hugepage aligned, and
1388 * can be made suitable for hugepages.
1389 */
1390 ret = prepare_hugepage_range(addr, len, pgoff);
1391 } else {
1392 /*
1393 * Ensure that a normal request is not falling in a
1394 * reserved hugepage range. For some archs like IA-64,
1395 * there is a separate region for hugepages.
1396 */
1397 ret = is_hugepage_only_range(current->mm, addr, len);
1398 }
1399 if (ret)
1400 return -EINVAL;
1401 return addr; 1385 return addr;
1402} 1386}
1403 1387