Lines Matching defs:page
52 struct page *page = ictx->page;
53 if (page) {
54 BUG_ON(!PageLocked(page));
55 unlock_page(page);
56 ntfs_unmap_page(page);
98 * - Each page cache page in the index allocation mapping must be
100 * page due to it being under ->writepage at the moment which
103 * unlocks the page.
120 struct page *page;
200 ictx->page = NULL;
261 * of PAGE_SIZE and map the page cache page, reading it from
264 page = ntfs_map_page(ia_mapping, vcn <<
266 if (IS_ERR(page)) {
267 ntfs_error(sb, "Failed to map index page, error %ld.",
268 -PTR_ERR(page));
269 err = PTR_ERR(page);
272 lock_page(page);
273 kaddr = (u8*)page_address(page);
314 "crosses page boundary. Impossible! Cannot "
369 ictx->page = page;
412 * If vcn is in the same page cache page as old_vcn we recycle
413 * the mapped page.
420 unlock_page(page);
421 ntfs_unmap_page(page);
427 unlock_page(page);
428 ntfs_unmap_page(page);