aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/huge_mm.h
diff options
context:
space:
mode:
authorAndrea Arcangeli <aarcange@redhat.com>2011-01-13 18:47:17 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-13 20:32:47 -0500
commita664b2d8555c659127bf8fe049a58449d394a707 (patch)
tree14771f4ab93a9dda98174f21e0361a77e2aebfa6 /include/linux/huge_mm.h
parent1ddd6db43a08cba56c7ee920800980862086f1c3 (diff)
thp: madvise(MADV_NOHUGEPAGE)
Add madvise MADV_NOHUGEPAGE to mark regions that are not important to be hugepage backed. Return -EINVAL if the vma is not of an anonymous type, or the feature isn't built into the kernel. Never silently return success. Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/huge_mm.h')
-rw-r--r--include/linux/huge_mm.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
index 9b48c24df260..a8b7e42d19ec 100644
--- a/include/linux/huge_mm.h
+++ b/include/linux/huge_mm.h
@@ -52,10 +52,12 @@ extern pmd_t *page_check_address_pmd(struct page *page,
52#define HPAGE_PMD_SIZE HPAGE_SIZE 52#define HPAGE_PMD_SIZE HPAGE_SIZE
53 53
54#define transparent_hugepage_enabled(__vma) \ 54#define transparent_hugepage_enabled(__vma) \
55 (transparent_hugepage_flags & (1<<TRANSPARENT_HUGEPAGE_FLAG) || \ 55 ((transparent_hugepage_flags & \
56 (transparent_hugepage_flags & \ 56 (1<<TRANSPARENT_HUGEPAGE_FLAG) || \
57 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG) && \ 57 (transparent_hugepage_flags & \
58 (__vma)->vm_flags & VM_HUGEPAGE)) 58 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG) && \
59 ((__vma)->vm_flags & VM_HUGEPAGE))) && \
60 !((__vma)->vm_flags & VM_NOHUGEPAGE))
59#define transparent_hugepage_defrag(__vma) \ 61#define transparent_hugepage_defrag(__vma) \
60 ((transparent_hugepage_flags & \ 62 ((transparent_hugepage_flags & \
61 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG)) || \ 63 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG)) || \
@@ -103,7 +105,7 @@ extern void __split_huge_page_pmd(struct mm_struct *mm, pmd_t *pmd);
103#if HPAGE_PMD_ORDER > MAX_ORDER 105#if HPAGE_PMD_ORDER > MAX_ORDER
104#error "hugepages can't be allocated by the buddy allocator" 106#error "hugepages can't be allocated by the buddy allocator"
105#endif 107#endif
106extern int hugepage_madvise(unsigned long *vm_flags); 108extern int hugepage_madvise(unsigned long *vm_flags, int advice);
107extern void __vma_adjust_trans_huge(struct vm_area_struct *vma, 109extern void __vma_adjust_trans_huge(struct vm_area_struct *vma,
108 unsigned long start, 110 unsigned long start,
109 unsigned long end, 111 unsigned long end,
@@ -141,7 +143,7 @@ static inline int split_huge_page(struct page *page)
141 do { } while (0) 143 do { } while (0)
142#define wait_split_huge_page(__anon_vma, __pmd) \ 144#define wait_split_huge_page(__anon_vma, __pmd) \
143 do { } while (0) 145 do { } while (0)
144static inline int hugepage_madvise(unsigned long *vm_flags) 146static inline int hugepage_madvise(unsigned long *vm_flags, int advice)
145{ 147{
146 BUG(); 148 BUG();
147 return 0; 149 return 0;