linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sparc32: Page align size in arch_dma_alloc
@ 2021-09-08  7:48 Andreas Larsson
  2021-09-09  6:07 ` Christoph Hellwig
       [not found] ` <YTjfJl6YmBCdZ8XB@ravnborg.org>
  0 siblings, 2 replies; 10+ messages in thread
From: Andreas Larsson @ 2021-09-08  7:48 UTC (permalink / raw)
  To: David Miller, sparclinux
  Cc: Christoph Hellwig, Sam Ravnborg, linux-kernel, software

Commit 53b7670e5735 ("sparc: factor the dma coherent mapping into
helper") lost the page align for the calls to dma_make_coherent and
srmmu_unmapiorange. The latter cannot handle a non page aligned len
argument.

Signed-off-by: Andreas Larsson <andreas@gaisler.com>
---
 arch/sparc/kernel/ioport.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/arch/sparc/kernel/ioport.c b/arch/sparc/kernel/ioport.c
index 8e1d72a16759..7ceae24b0ca9 100644
--- a/arch/sparc/kernel/ioport.c
+++ b/arch/sparc/kernel/ioport.c
@@ -356,7 +356,9 @@ void *arch_dma_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle,
 void arch_dma_free(struct device *dev, size_t size, void *cpu_addr,
 		dma_addr_t dma_addr, unsigned long attrs)
 {
-	if (!sparc_dma_free_resource(cpu_addr, PAGE_ALIGN(size)))
+	size = PAGE_ALIGN(size);
+
+	if (!sparc_dma_free_resource(cpu_addr, size))
 		return;
 
 	dma_make_coherent(dma_addr, size);
-- 
2.17.1


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

end of thread, other threads:[~2021-09-14 11:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08  7:48 [PATCH] sparc32: Page align size in arch_dma_alloc Andreas Larsson
2021-09-09  6:07 ` Christoph Hellwig
2021-09-13 13:18   ` Andreas Larsson
2021-09-14  6:17     ` Christoph Hellwig
2021-09-14  8:51       ` Andreas Larsson
2021-09-14 10:42         ` Christoph Hellwig
2021-09-14 11:16           ` Andreas Larsson
2021-09-14 11:26             ` Christoph Hellwig
     [not found] ` <YTjfJl6YmBCdZ8XB@ravnborg.org>
2021-09-14  6:12   ` Christoph Hellwig
2021-09-14 11:39     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).