summaryrefslogtreecommitdiffstats
path: root/include/asm-x86/hugetlb.h
diff options
context:
space:
mode:
authorIngo Molnar2008-07-26 15:30:40 +0200
committerIngo Molnar2008-07-26 15:30:40 +0200
commit1503af661947b7a4a09355cc2ae6aa0d43f16776 (patch)
tree5bfcfadf2dd2d98c2ad251c96d7ee43a6903819a /include/asm-x86/hugetlb.h
parentx86: consolidate header guards (diff)
parentx86_64: fix ia32 AMD syscall audit fast-path (diff)
downloadkernel-qcow2-linux-1503af661947b7a4a09355cc2ae6aa0d43f16776.tar.gz
kernel-qcow2-linux-1503af661947b7a4a09355cc2ae6aa0d43f16776.tar.xz
kernel-qcow2-linux-1503af661947b7a4a09355cc2ae6aa0d43f16776.zip
Merge branch 'linus' into x86/header-guards
Conflicts: include/asm-x86/gpio.h include/asm-x86/ide.h Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/hugetlb.h')
-rw-r--r--include/asm-x86/hugetlb.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/asm-x86/hugetlb.h b/include/asm-x86/hugetlb.h
index 0e0a0828182b..0b7ec5dc0884 100644
--- a/include/asm-x86/hugetlb.h
+++ b/include/asm-x86/hugetlb.h
@@ -14,11 +14,13 @@ static inline int is_hugepage_only_range(struct mm_struct *mm,
* If the arch doesn't supply something else, assume that hugepage
* size aligned regions are ok without further preparation.
*/
-static inline int prepare_hugepage_range(unsigned long addr, unsigned long len)
+static inline int prepare_hugepage_range(struct file *file,
+ unsigned long addr, unsigned long len)
{
- if (len & ~HPAGE_MASK)
+ struct hstate *h = hstate_file(file);
+ if (len & ~huge_page_mask(h))
return -EINVAL;
- if (addr & ~HPAGE_MASK)
+ if (addr & ~huge_page_mask(h))
return -EINVAL;
return 0;
}
@@ -26,7 +28,7 @@ static inline int prepare_hugepage_range(unsigned long addr, unsigned long len)
static inline void hugetlb_prefault_arch_hook(struct mm_struct *mm) {
}
-static inline void hugetlb_free_pgd_range(struct mmu_gather **tlb,
+static inline void hugetlb_free_pgd_range(struct mmu_gather *tlb,
unsigned long addr, unsigned long end,
unsigned long floor,
unsigned long ceiling)