[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240710110545.110366a4@canb.auug.org.au>
Date: Wed, 10 Jul 2024 11:05:45 +1000
From: Stephen Rothwell <sfr@...b.auug.org.au>
To: Christoph Hellwig <hch@....de>
Cc: Michael Kelley <mhklinux@...look.com>, Linux Kernel Mailing List
<linux-kernel@...r.kernel.org>, Linux Next Mailing List
<linux-next@...r.kernel.org>
Subject: linux-next: build failure after merge of the dma-mapping tree
Hi all,
After merging the dma-mapping tree, today's linux-next build (x86_64
allmodconfig) failed like this:
kernel/dma/swiotlb.c: In function 'swiotlb_alloc':
kernel/dma/swiotlb.c:1770:17: error: too few arguments to function 'swiotlb_release_slots'
1770 | swiotlb_release_slots(dev, tlb_addr);
| ^~~~~~~~~~~~~~~~~~~~~
kernel/dma/swiotlb.c:1443:13: note: declared here
1443 | static void swiotlb_release_slots(struct device *dev, phys_addr_t tlb_addr,
| ^~~~~~~~~~~~~~~~~~~~~
Caused by commit
b21a42af002d ("swiotlb: reduce swiotlb pool lookups")
I applied the following patch (which may or may not be correct):
From: Stephen Rothwell <sfr@...b.auug.org.au>
Date: Wed, 10 Jul 2024 10:39:48 +1000
Subject: [PATCH] fixup for "swiotlb: reduce swiotlb pool lookups"
Signed-off-by: Stephen Rothwell <sfr@...b.auug.org.au>
---
kernel/dma/swiotlb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c
index 618602fd10df..b4d8167b2f8d 100644
--- a/kernel/dma/swiotlb.c
+++ b/kernel/dma/swiotlb.c
@@ -1767,7 +1767,7 @@ struct page *swiotlb_alloc(struct device *dev, size_t size)
if (unlikely(!PAGE_ALIGNED(tlb_addr))) {
dev_WARN_ONCE(dev, 1, "Cannot allocate pages from non page-aligned swiotlb addr 0x%pa.\n",
&tlb_addr);
- swiotlb_release_slots(dev, tlb_addr);
+ swiotlb_release_slots(dev, tlb_addr, pool);
return NULL;
}
--
2.43.0
--
Cheers,
Stephen Rothwell
Content of type "application/pgp-signature" skipped
Powered by blists - more mailing lists