Lines Matching refs:page
33 struct page *page; in pte_alloc_one() local
36 page = alloc_pages(GFP_KERNEL|__GFP_HIGHMEM|__GFP_REPEAT, 0); in pte_alloc_one()
38 page = alloc_pages(GFP_KERNEL|__GFP_REPEAT, 0); in pte_alloc_one()
40 if (!page) in pte_alloc_one()
43 clear_highpage(page); in pte_alloc_one()
44 if (!pgtable_page_ctor(page)) { in pte_alloc_one()
45 __free_page(page); in pte_alloc_one()
48 flush_dcache_page(page); in pte_alloc_one()
49 return page; in pte_alloc_one()
87 struct page *pgd_list;
91 struct page *page = virt_to_page(pgd); in pgd_list_add() local
92 page->index = (unsigned long) pgd_list; in pgd_list_add()
94 set_page_private(pgd_list, (unsigned long) &page->index); in pgd_list_add()
95 pgd_list = page; in pgd_list_add()
96 set_page_private(page, (unsigned long)&pgd_list); in pgd_list_add()
101 struct page *next, **pprev, *page = virt_to_page(pgd); in pgd_list_del() local
102 next = (struct page *) page->index; in pgd_list_del()
103 pprev = (struct page **) page_private(page); in pgd_list_del()