Lines Matching refs:page
2 * include/asm-xtensa/page.h
20 * PAGE_SHIFT determines the page size
41 * If the cache size for one way is greater than the page size, we have to
42 * deal with cache aliasing. The cache index is wider than the page size:
53 * When the page number is translated to the physical page address, the lowest
57 * The kernel does not provide a mechanism to ensure that the page color
60 * the page might also change.
97 typedef struct { unsigned long pte; } pte_t; /* page table entry */
100 typedef struct page *pgtable_t;
130 struct page;
132 extern void clear_page(void *page);
146 void clear_user_highpage(struct page *page, unsigned long vaddr);
148 void copy_user_highpage(struct page *to, struct page *from,
151 # define clear_user_page(page, vaddr, pg) clear_page(page)
200 #define page_to_virt(page) __va(page_to_pfn(page) << PAGE_SHIFT)
202 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)