1
2
3
4
5
6
7
8
9
10
11#ifndef __MM_INTERNAL_H
12#define __MM_INTERNAL_H
13
14#include <linux/mm.h>
15
16void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *start_vma,
17 unsigned long floor, unsigned long ceiling);
18
19extern void prep_compound_page(struct page *page, unsigned long order);
20extern void prep_compound_gigantic_page(struct page *page, unsigned long order);
21
22static inline void set_page_count(struct page *page, int v)
23{
24 atomic_set(&page->_count, v);
25}
26
27
28
29
30
31static inline void set_page_refcounted(struct page *page)
32{
33 VM_BUG_ON(PageTail(page));
34 VM_BUG_ON(atomic_read(&page->_count));
35 set_page_count(page, 1);
36}
37
38static inline void __put_page(struct page *page)
39{
40 atomic_dec(&page->_count);
41}
42
43
44
45
46extern int isolate_lru_page(struct page *page);
47extern void putback_lru_page(struct page *page);
48
49
50
51
52extern void __free_pages_bootmem(struct page *page, unsigned int order);
53
54
55
56
57
58
59static inline unsigned long page_order(struct page *page)
60{
61 VM_BUG_ON(!PageBuddy(page));
62 return page_private(page);
63}
64
65extern long mlock_vma_pages_range(struct vm_area_struct *vma,
66 unsigned long start, unsigned long end);
67extern void munlock_vma_pages_range(struct vm_area_struct *vma,
68 unsigned long start, unsigned long end);
69static inline void munlock_vma_pages_all(struct vm_area_struct *vma)
70{
71 munlock_vma_pages_range(vma, vma->vm_start, vma->vm_end);
72}
73
74#ifdef CONFIG_UNEVICTABLE_LRU
75
76
77
78
79
80
81static inline void unevictable_migrate_page(struct page *new, struct page *old)
82{
83 if (TestClearPageUnevictable(old))
84 SetPageUnevictable(new);
85}
86#else
87static inline void unevictable_migrate_page(struct page *new, struct page *old)
88{
89}
90#endif
91
92#ifdef CONFIG_UNEVICTABLE_LRU
93
94
95
96
97
98static inline int is_mlocked_vma(struct vm_area_struct *vma, struct page *page)
99{
100 VM_BUG_ON(PageLRU(page));
101
102 if (likely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) != VM_LOCKED))
103 return 0;
104
105 if (!TestSetPageMlocked(page)) {
106 inc_zone_page_state(page, NR_MLOCK);
107 count_vm_event(UNEVICTABLE_PGMLOCKED);
108 }
109 return 1;
110}
111
112
113
114
115extern void mlock_vma_page(struct page *page);
116
117
118
119
120
121
122
123
124
125
126extern void __clear_page_mlock(struct page *page);
127static inline void clear_page_mlock(struct page *page)
128{
129 if (unlikely(TestClearPageMlocked(page)))
130 __clear_page_mlock(page);
131}
132
133
134
135
136
137static inline void mlock_migrate_page(struct page *newpage, struct page *page)
138{
139 if (TestClearPageMlocked(page)) {
140 unsigned long flags;
141
142 local_irq_save(flags);
143 __dec_zone_page_state(page, NR_MLOCK);
144 SetPageMlocked(newpage);
145 __inc_zone_page_state(newpage, NR_MLOCK);
146 local_irq_restore(flags);
147 }
148}
149
150
151
152
153
154
155static inline void free_page_mlock(struct page *page)
156{
157 if (unlikely(TestClearPageMlocked(page))) {
158 unsigned long flags;
159
160 local_irq_save(flags);
161 __dec_zone_page_state(page, NR_MLOCK);
162 __count_vm_event(UNEVICTABLE_MLOCKFREED);
163 local_irq_restore(flags);
164 }
165}
166
167#else
168static inline int is_mlocked_vma(struct vm_area_struct *v, struct page *p)
169{
170 return 0;
171}
172static inline void clear_page_mlock(struct page *page) { }
173static inline void mlock_vma_page(struct page *page) { }
174static inline void mlock_migrate_page(struct page *new, struct page *old) { }
175static inline void free_page_mlock(struct page *page) { }
176
177#endif
178
179
180
181
182
183
184static inline struct page *mem_map_offset(struct page *base, int offset)
185{
186 if (unlikely(offset >= MAX_ORDER_NR_PAGES))
187 return pfn_to_page(page_to_pfn(base) + offset);
188 return base + offset;
189}
190
191
192
193
194
195static inline struct page *mem_map_next(struct page *iter,
196 struct page *base, int offset)
197{
198 if (unlikely((offset & (MAX_ORDER_NR_PAGES - 1)) == 0)) {
199 unsigned long pfn = page_to_pfn(base) + offset;
200 if (!pfn_valid(pfn))
201 return NULL;
202 return pfn_to_page(pfn);
203 }
204 return iter + 1;
205}
206
207
208
209
210
211
212
213#ifdef CONFIG_SPARSEMEM
214#define __paginginit __meminit
215#else
216#define __paginginit __init
217#endif
218
219
220enum mminit_level {
221 MMINIT_WARNING,
222 MMINIT_VERIFY,
223 MMINIT_TRACE
224};
225
226#ifdef CONFIG_DEBUG_MEMORY_INIT
227
228extern int mminit_loglevel;
229
230#define mminit_dprintk(level, prefix, fmt, arg...) \
231do { \
232 if (level < mminit_loglevel) { \
233 printk(level <= MMINIT_WARNING ? KERN_WARNING : KERN_DEBUG); \
234 printk(KERN_CONT "mminit::" prefix " " fmt, ##arg); \
235 } \
236} while (0)
237
238extern void mminit_verify_pageflags_layout(void);
239extern void mminit_verify_page_links(struct page *page,
240 enum zone_type zone, unsigned long nid, unsigned long pfn);
241extern void mminit_verify_zonelist(void);
242
243#else
244
245static inline void mminit_dprintk(enum mminit_level level,
246 const char *prefix, const char *fmt, ...)
247{
248}
249
250static inline void mminit_verify_pageflags_layout(void)
251{
252}
253
254static inline void mminit_verify_page_links(struct page *page,
255 enum zone_type zone, unsigned long nid, unsigned long pfn)
256{
257}
258
259static inline void mminit_verify_zonelist(void)
260{
261}
262#endif
263
264
265#if defined(CONFIG_SPARSEMEM)
266extern void mminit_validate_memmodel_limits(unsigned long *start_pfn,
267 unsigned long *end_pfn);
268#else
269static inline void mminit_validate_memmodel_limits(unsigned long *start_pfn,
270 unsigned long *end_pfn)
271{
272}
273#endif
274
275#define GUP_FLAGS_WRITE 0x1
276#define GUP_FLAGS_FORCE 0x2
277#define GUP_FLAGS_IGNORE_VMA_PERMISSIONS 0x4
278
279int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
280 unsigned long start, int len, int flags,
281 struct page **pages, struct vm_area_struct **vmas);
282
283#endif
284