Lines Matching defs:allocation
57 unsigned int allocation;
64 struct dma_page { /* cacheable header for 'allocation' bytes */
128 if ((dma - page->dma) < pool->allocation)
162 memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
223 * Return: a dma allocation pool with the requested characteristics, or
230 size_t allocation;
247 allocation = max_t(size_t, size, PAGE_SIZE);
250 boundary = allocation;
254 boundary = min(boundary, allocation);
268 retval->allocation = allocation;
309 while (offset + pool->size <= pool->allocation) {
345 page->vaddr = dma_alloc_coherent(pool->dev, pool->allocation,
387 dma_free_coherent(pool->dev, pool->allocation,
488 * @allocation: returned blocks won't cross this boundary (or zero)
493 * Return: a managed dma allocation pool with the requested
497 size_t size, size_t align, size_t allocation)
505 pool = *ptr = dma_pool_create(name, dev, size, align, allocation);