summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorTony Battersby <tonyb@cybernetics.com>2023-01-27 00:51:18 +0300
committerAndrew Morton <akpm@linux-foundation.org>2023-04-06 05:42:39 +0300
commit19f504584038f6d27846b19ee413a6ac1ee0f765 (patch)
treeff0153a196a94f479a2ea2ce1153bbf6bd300725 /mm
parent347e4e44c0a98abcee3caadd222e3e3896c6d2a8 (diff)
downloadlinux-19f504584038f6d27846b19ee413a6ac1ee0f765.tar.xz
dmapool: speedup DMAPOOL_DEBUG with init_on_alloc
Avoid double-memset of the same allocated memory in dma_pool_alloc() when both DMAPOOL_DEBUG is enabled and init_on_alloc=1. Link: https://lkml.kernel.org/r/20230126215125.4069751-6-kbusch@meta.com Signed-off-by: Tony Battersby <tonyb@cybernetics.com> Signed-off-by: Keith Busch <kbusch@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Cc: Matthew Wilcox <willy@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/dmapool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/dmapool.c b/mm/dmapool.c
index ee993bb59fc2..eaed3ffb42aa 100644
--- a/mm/dmapool.c
+++ b/mm/dmapool.c
@@ -356,7 +356,7 @@ void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
break;
}
}
- if (!(mem_flags & __GFP_ZERO))
+ if (!want_init_on_alloc(mem_flags))
memset(retval, POOL_POISON_ALLOCATED, pool->size);
#endif
spin_unlock_irqrestore(&pool->lock, flags);