public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] swiotlb: check alloc_size before the allocation of a new memory pool
@ 2024-01-09  2:45 Peng Zhang
  2024-01-11  8:35 ` Christoph Hellwig
  0 siblings, 1 reply; 2+ messages in thread
From: Peng Zhang @ 2024-01-09  2:45 UTC (permalink / raw)
  To: hch, m.szyprowski, robin.murphy, petr.tesarik1, iommu,
	linux-kernel
  Cc: wangkefeng.wang, sunnanyong, zhangpeng362

From: ZhangPeng <zhangpeng362@huawei.com>

The allocation request for swiotlb contiguous memory greater than
128*2KB cannot be fulfilled because it exceeds the maximum contiguous
memory limit. If the swiotlb memory we allocate is larger than 128*2KB,
swiotlb_find_slots() will still schedule the allocation of a new memory
pool, which will increase memory overhead.

Fix it by adding a check with alloc_size no more than 128*2KB before
scheduling the allocation of a new memory pool in swiotlb_find_slots().

Signed-off-by: ZhangPeng <zhangpeng362@huawei.com>
Reviewed-by: Petr Tesarik <petr.tesarik1@huawei-partners.com>
---
v1->v2:
- Rebased on for-next branch per Christoph Hellwig
- Added RB from Petr Tesarik

 kernel/dma/swiotlb.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c
index 97c298b210bc..b079a9a8e087 100644
--- a/kernel/dma/swiotlb.c
+++ b/kernel/dma/swiotlb.c
@@ -1136,6 +1136,9 @@ static int swiotlb_find_slots(struct device *dev, phys_addr_t orig_addr,
 	int cpu, i;
 	int index;
 
+	if (alloc_size > IO_TLB_SEGSIZE * IO_TLB_SIZE)
+		return -1;
+
 	cpu = raw_smp_processor_id();
 	for (i = 0; i < default_nareas; ++i) {
 		index = swiotlb_search_area(dev, cpu, i, orig_addr, alloc_size,
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] swiotlb: check alloc_size before the allocation of a new memory pool
  2024-01-09  2:45 [PATCH v2] swiotlb: check alloc_size before the allocation of a new memory pool Peng Zhang
@ 2024-01-11  8:35 ` Christoph Hellwig
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2024-01-11  8:35 UTC (permalink / raw)
  To: Peng Zhang
  Cc: hch, m.szyprowski, robin.murphy, petr.tesarik1, iommu,
	linux-kernel, wangkefeng.wang, sunnanyong

Thanks, applied.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-01-11  8:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-09  2:45 [PATCH v2] swiotlb: check alloc_size before the allocation of a new memory pool Peng Zhang
2024-01-11  8:35 ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox