2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2008, 2009 Cavium Networks, Inc.
9 #ifndef __ASM_HUGETLB_H
10 #define __ASM_HUGETLB_H
14 static inline int is_hugepage_only_range(struct mm_struct *mm,
21 static inline int prepare_hugepage_range(struct file *file,
25 unsigned long task_size = STACK_TOP;
26 struct hstate *h = hstate_file(file);
28 if (len & ~huge_page_mask(h))
30 if (addr & ~huge_page_mask(h))
34 if (task_size - len < addr)
39 #define __HAVE_ARCH_HUGE_PTEP_GET_AND_CLEAR
40 static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
41 unsigned long addr, pte_t *ptep)
46 pte_val(clear) = (unsigned long)invalid_pte_table;
47 set_pte_at(mm, addr, ptep, clear);
51 #define __HAVE_ARCH_HUGE_PTEP_CLEAR_FLUSH
52 static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
53 unsigned long addr, pte_t *ptep)
55 flush_tlb_page(vma, addr & huge_page_mask(hstate_vma(vma)));
58 static inline int huge_pte_none(pte_t pte)
60 unsigned long val = pte_val(pte) & ~_PAGE_GLOBAL;
61 return !val || (val == (unsigned long)invalid_pte_table);
64 static inline pte_t huge_pte_wrprotect(pte_t pte)
66 return pte_wrprotect(pte);
69 static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
70 unsigned long addr, pte_t *ptep)
72 ptep_set_wrprotect(mm, addr, ptep);
75 static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
77 pte_t *ptep, pte_t pte,
80 int changed = !pte_same(*ptep, pte);
83 set_pte_at(vma->vm_mm, addr, ptep, pte);
85 * There could be some standard sized pages in there,
88 flush_tlb_range(vma, addr, addr + HPAGE_SIZE);
93 static inline pte_t huge_ptep_get(pte_t *ptep)
98 static inline void arch_clear_hugepage_flags(struct page *page)
102 #include <asm-generic/hugetlb.h>
104 #endif /* __ASM_HUGETLB_H */