diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-05-06 14:49:00 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 12:12:51 -0700 |
commit | d2ba27e8007b35d24764c0877ab2428e00a5c5ab (patch) | |
tree | d4c645000da4c208dba37fdda9897f1b7295cce4 /fs/hugetlbfs | |
parent | 1b4244647ceaad42ea6eb12899d58753d82b7727 (diff) | |
download | linux-3.10-d2ba27e8007b35d24764c0877ab2428e00a5c5ab.tar.gz linux-3.10-d2ba27e8007b35d24764c0877ab2428e00a5c5ab.tar.bz2 linux-3.10-d2ba27e8007b35d24764c0877ab2428e00a5c5ab.zip |
proper prototype for hugetlb_get_unmapped_area()
Add a proper prototype for hugetlb_get_unmapped_area() in
include/linux/hugetlb.h.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: William Irwin <wli@holomorphy.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/hugetlbfs')
-rw-r--r-- | fs/hugetlbfs/inode.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 8c718a3d413..9ba71b252f3 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c @@ -98,10 +98,7 @@ out: * Called under down_write(mmap_sem). */ -#ifdef HAVE_ARCH_HUGETLB_UNMAPPED_AREA -unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, - unsigned long len, unsigned long pgoff, unsigned long flags); -#else +#ifndef HAVE_ARCH_HUGETLB_UNMAPPED_AREA static unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags) |