Lines Matching full:page
47 * Page offset: 3GB
131 * Convert a physical address to a Page Frame Number and back
153 * PFNs are used to describe any physical page; this means
156 * This is the PFN of the first RAM page in the kernel
157 * direct-mapped view. We assume this is the first page
202 * Conversion between a struct page and a physical address.
205 * struct page, the resulting pointer must be validated
206 * using VALID_PAGE(). It must return an invalid struct page
210 * page_to_pfn(page) convert a struct page * to a PFN number
211 * pfn_to_page(pfn) convert a _valid_ PFN number to struct page *
214 * virt_to_page(k) convert a _valid_ virtual address to struct page *
264 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
271 #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page)))
275 #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page))