Lines Matching refs:page
67 struct page *page, *end; in consistent_alloc() local
129 page = virt_to_page(vaddr); in consistent_alloc()
130 end = page + (1 << order); in consistent_alloc()
132 split_page(page, order); in consistent_alloc()
140 SetPageReserved(page); in consistent_alloc()
141 page++; in consistent_alloc()
145 while (page < end) { in consistent_alloc()
146 __free_page(page); in consistent_alloc()
147 page++; in consistent_alloc()
183 struct page *page; in consistent_free() local
195 page = virt_to_page(vaddr); in consistent_free()
198 __free_reserved_page(page); in consistent_free()
199 page++; in consistent_free()
210 page = pfn_to_page(pfn); in consistent_free()
211 __free_reserved_page(page); in consistent_free()
260 void consistent_sync_page(struct page *page, unsigned long offset, in consistent_sync_page() argument
263 unsigned long start = (unsigned long)page_address(page) + offset; in consistent_sync_page()