Lines Matching defs:page
2843 * to a HW supported page size.
2898 * @pgsz: best HW supported page size to use
4053 * ib_virt_dma_to_page - Convert a dma_addr to a struct page
4056 * Used by ib_uses_virt_dma() device to get back to the struct page after going
4059 static inline struct page *ib_virt_dma_to_page(u64 dma_addr)
4108 * ib_dma_map_page - Map a physical page to DMA address
4110 * @page: The page to be mapped
4111 * @offset: The offset within the page
4116 struct page *page,
4122 return (uintptr_t)(page_address(page) + offset);
4123 return dma_map_page(dev->dma_device, page, offset, size, direction);