Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21f237e4 authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

dma-direct: use node local allocations for coherent memory



To preserve the x86 behavior.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarRobin Murphy <robin.murphy@arm.com>
parent 080321d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ static void *dma_direct_alloc(struct device *dev, size_t size,
	if (gfpflags_allow_blocking(gfp))
		page = dma_alloc_from_contiguous(dev, count, page_order, gfp);
	if (!page)
		page = alloc_pages(gfp, page_order);
		page = alloc_pages_node(dev_to_node(dev), gfp, page_order);
	if (!page)
		return NULL;