This source file includes following definitions.
- is_hugepage_only_range
- arch_clear_hugepage_flags
1
2
3
4
5
6
7
8
9
10 #ifndef _ASM_ARM_HUGETLB_H
11 #define _ASM_ARM_HUGETLB_H
12
13 #include <asm/page.h>
14 #include <asm/hugetlb-3level.h>
15 #include <asm-generic/hugetlb.h>
16
17 static inline int is_hugepage_only_range(struct mm_struct *mm,
18 unsigned long addr, unsigned long len)
19 {
20 return 0;
21 }
22
23 static inline void arch_clear_hugepage_flags(struct page *page)
24 {
25 clear_bit(PG_dcache_clean, &page->flags);
26 }
27
28 #endif