aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/rmap.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/linux/rmap.h b/include/linux/rmap.h
index fd56111a52c1..830e65dc01ee 100644
--- a/include/linux/rmap.h
+++ b/include/linux/rmap.h
@@ -73,7 +73,13 @@ static inline void get_anon_vma(struct anon_vma *anon_vma)
73 atomic_inc(&anon_vma->refcount); 73 atomic_inc(&anon_vma->refcount);
74} 74}
75 75
76void put_anon_vma(struct anon_vma *); 76void __put_anon_vma(struct anon_vma *anon_vma);
77
78static inline void put_anon_vma(struct anon_vma *anon_vma)
79{
80 if (atomic_dec_and_test(&anon_vma->refcount))
81 __put_anon_vma(anon_vma);
82}
77 83
78static inline struct anon_vma *page_anon_vma(struct page *page) 84static inline struct anon_vma *page_anon_vma(struct page *page)
79{ 85{
@@ -116,7 +122,6 @@ void unlink_anon_vmas(struct vm_area_struct *);
116int anon_vma_clone(struct vm_area_struct *, struct vm_area_struct *); 122int anon_vma_clone(struct vm_area_struct *, struct vm_area_struct *);
117int anon_vma_fork(struct vm_area_struct *, struct vm_area_struct *); 123int anon_vma_fork(struct vm_area_struct *, struct vm_area_struct *);
118void __anon_vma_link(struct vm_area_struct *); 124void __anon_vma_link(struct vm_area_struct *);
119void anon_vma_free(struct anon_vma *);
120 125
121static inline void anon_vma_merge(struct vm_area_struct *vma, 126static inline void anon_vma_merge(struct vm_area_struct *vma,
122 struct vm_area_struct *next) 127 struct vm_area_struct *next)
@@ -125,6 +130,8 @@ static inline void anon_vma_merge(struct vm_area_struct *vma,
125 unlink_anon_vmas(next); 130 unlink_anon_vmas(next);
126} 131}
127 132
133struct anon_vma *page_get_anon_vma(struct page *page);
134
128/* 135/*
129 * rmap interfaces called when adding or removing pte of page 136 * rmap interfaces called when adding or removing pte of page
130 */ 137 */