1 /* internal.h: mm/ internal definitions
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 #ifndef __MM_INTERNAL_H
12 #define __MM_INTERNAL_H
16 void free_pgtables(struct mmu_gather
*tlb
, struct vm_area_struct
*start_vma
,
17 unsigned long floor
, unsigned long ceiling
);
19 extern void prep_compound_page(struct page
*page
, unsigned long order
);
20 extern void prep_compound_gigantic_page(struct page
*page
, unsigned long order
);
22 static inline void set_page_count(struct page
*page
, int v
)
24 atomic_set(&page
->_count
, v
);
28 * Turn a non-refcounted page (->_count == 0) into refcounted with
31 static inline void set_page_refcounted(struct page
*page
)
33 VM_BUG_ON(PageTail(page
));
34 VM_BUG_ON(atomic_read(&page
->_count
));
35 set_page_count(page
, 1);
38 static inline void __put_page(struct page
*page
)
40 atomic_dec(&page
->_count
);
46 extern int isolate_lru_page(struct page
*page
);
47 extern void putback_lru_page(struct page
*page
);
52 extern void __free_pages_bootmem(struct page
*page
, unsigned int order
);
55 * function for dealing with page's order in buddy system.
56 * zone->lock is already acquired when we use these.
57 * So, we don't need atomic page->flags operations here.
59 static inline unsigned long page_order(struct page
*page
)
61 VM_BUG_ON(!PageBuddy(page
));
62 return page_private(page
);
65 extern long mlock_vma_pages_range(struct vm_area_struct
*vma
,
66 unsigned long start
, unsigned long end
);
67 extern void munlock_vma_pages_range(struct vm_area_struct
*vma
,
68 unsigned long start
, unsigned long end
);
69 static inline void munlock_vma_pages_all(struct vm_area_struct
*vma
)
71 munlock_vma_pages_range(vma
, vma
->vm_start
, vma
->vm_end
);
74 #ifdef CONFIG_UNEVICTABLE_LRU
76 * unevictable_migrate_page() called only from migrate_page_copy() to
77 * migrate unevictable flag to new page.
78 * Note that the old page has been isolated from the LRU lists at this
79 * point so we don't need to worry about LRU statistics.
81 static inline void unevictable_migrate_page(struct page
*new, struct page
*old
)
83 if (TestClearPageUnevictable(old
))
84 SetPageUnevictable(new);
87 static inline void unevictable_migrate_page(struct page
*new, struct page
*old
)
92 #ifdef CONFIG_UNEVICTABLE_LRU
94 * Called only in fault path via page_evictable() for a new page
95 * to determine if it's being mapped into a LOCKED vma.
96 * If so, mark page as mlocked.
98 static inline int is_mlocked_vma(struct vm_area_struct
*vma
, struct page
*page
)
100 VM_BUG_ON(PageLRU(page
));
102 if (likely((vma
->vm_flags
& (VM_LOCKED
| VM_SPECIAL
)) != VM_LOCKED
))
105 if (!TestSetPageMlocked(page
)) {
106 inc_zone_page_state(page
, NR_MLOCK
);
107 count_vm_event(UNEVICTABLE_PGMLOCKED
);
113 * must be called with vma's mmap_sem held for read, and page locked.
115 extern void mlock_vma_page(struct page
*page
);
118 * Clear the page's PageMlocked(). This can be useful in a situation where
119 * we want to unconditionally remove a page from the pagecache -- e.g.,
120 * on truncation or freeing.
122 * It is legal to call this function for any page, mlocked or not.
123 * If called for a page that is still mapped by mlocked vmas, all we do
124 * is revert to lazy LRU behaviour -- semantics are not broken.
126 extern void __clear_page_mlock(struct page
*page
);
127 static inline void clear_page_mlock(struct page
*page
)
129 if (unlikely(TestClearPageMlocked(page
)))
130 __clear_page_mlock(page
);
134 * mlock_migrate_page - called only from migrate_page_copy() to
135 * migrate the Mlocked page flag; update statistics.
137 static inline void mlock_migrate_page(struct page
*newpage
, struct page
*page
)
139 if (TestClearPageMlocked(page
)) {
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
);
151 * free_page_mlock() -- clean up attempts to free and mlocked() page.
152 * Page should not be on lru, so no need to fix that up.
153 * free_pages_check() will verify...
155 static inline void free_page_mlock(struct page
*page
)
157 if (unlikely(TestClearPageMlocked(page
))) {
160 local_irq_save(flags
);
161 __dec_zone_page_state(page
, NR_MLOCK
);
162 __count_vm_event(UNEVICTABLE_MLOCKFREED
);
163 local_irq_restore(flags
);
167 #else /* CONFIG_UNEVICTABLE_LRU */
168 static inline int is_mlocked_vma(struct vm_area_struct
*v
, struct page
*p
)
172 static inline void clear_page_mlock(struct page
*page
) { }
173 static inline void mlock_vma_page(struct page
*page
) { }
174 static inline void mlock_migrate_page(struct page
*new, struct page
*old
) { }
175 static inline void free_page_mlock(struct page
*page
) { }
177 #endif /* CONFIG_UNEVICTABLE_LRU */
180 * Return the mem_map entry representing the 'offset' subpage within
181 * the maximally aligned gigantic page 'base'. Handle any discontiguity
182 * in the mem_map at MAX_ORDER_NR_PAGES boundaries.
184 static inline struct page
*mem_map_offset(struct page
*base
, int offset
)
186 if (unlikely(offset
>= MAX_ORDER_NR_PAGES
))
187 return pfn_to_page(page_to_pfn(base
) + offset
);
188 return base
+ offset
;
192 * Iterator over all subpages withing the maximally aligned gigantic
193 * page 'base'. Handle any discontiguity in the mem_map.
195 static inline struct page
*mem_map_next(struct page
*iter
,
196 struct page
*base
, int offset
)
198 if (unlikely((offset
& (MAX_ORDER_NR_PAGES
- 1)) == 0)) {
199 unsigned long pfn
= page_to_pfn(base
) + offset
;
202 return pfn_to_page(pfn
);
208 * FLATMEM and DISCONTIGMEM configurations use alloc_bootmem_node,
209 * so all functions starting at paging_init should be marked __init
210 * in those cases. SPARSEMEM, however, allows for memory hotplug,
211 * and alloc_bootmem_node is not used.
213 #ifdef CONFIG_SPARSEMEM
214 #define __paginginit __meminit
216 #define __paginginit __init
219 /* Memory initialisation debug and verification */
226 #ifdef CONFIG_DEBUG_MEMORY_INIT
228 extern int mminit_loglevel
;
230 #define mminit_dprintk(level, prefix, fmt, arg...) \
232 if (level < mminit_loglevel) { \
233 printk(level <= MMINIT_WARNING ? KERN_WARNING : KERN_DEBUG); \
234 printk(KERN_CONT "mminit::" prefix " " fmt, ##arg); \
238 extern void mminit_verify_pageflags_layout(void);
239 extern void mminit_verify_page_links(struct page
*page
,
240 enum zone_type zone
, unsigned long nid
, unsigned long pfn
);
241 extern void mminit_verify_zonelist(void);
245 static inline void mminit_dprintk(enum mminit_level level
,
246 const char *prefix
, const char *fmt
, ...)
250 static inline void mminit_verify_pageflags_layout(void)
254 static inline void mminit_verify_page_links(struct page
*page
,
255 enum zone_type zone
, unsigned long nid
, unsigned long pfn
)
259 static inline void mminit_verify_zonelist(void)
262 #endif /* CONFIG_DEBUG_MEMORY_INIT */
264 /* mminit_validate_memmodel_limits is independent of CONFIG_DEBUG_MEMORY_INIT */
265 #if defined(CONFIG_SPARSEMEM)
266 extern void mminit_validate_memmodel_limits(unsigned long *start_pfn
,
267 unsigned long *end_pfn
);
269 static inline void mminit_validate_memmodel_limits(unsigned long *start_pfn
,
270 unsigned long *end_pfn
)
273 #endif /* CONFIG_SPARSEMEM */
275 #define GUP_FLAGS_WRITE 0x1
276 #define GUP_FLAGS_FORCE 0x2
277 #define GUP_FLAGS_IGNORE_VMA_PERMISSIONS 0x4
279 int __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
);