Lines Matching refs:cma_pages
36 struct page *cma_pages; member
258 cma_release(cma_heap->cma, buffer->cma_pages, buffer->pagecount); in cma_heap_dma_buf_release()
286 struct page *cma_pages; in cma_heap_allocate() local
302 cma_pages = cma_alloc(cma_heap->cma, pagecount, align, false); in cma_heap_allocate()
303 if (!cma_pages) in cma_heap_allocate()
307 if (PageHighMem(cma_pages)) { in cma_heap_allocate()
309 struct page *page = cma_pages; in cma_heap_allocate()
326 memset(page_address(cma_pages), 0, size); in cma_heap_allocate()
336 buffer->pages[pg] = &cma_pages[pg]; in cma_heap_allocate()
338 buffer->cma_pages = cma_pages; in cma_heap_allocate()
358 cma_release(cma_heap->cma, cma_pages, pagecount); in cma_heap_allocate()