]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
MIPS: ath79: reduce ARCH_DMA_MINALIGN
authorRosen Penev <rosenp@gmail.com>
Wed, 27 May 2026 22:25:04 +0000 (15:25 -0700)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Mon, 15 Jun 2026 10:12:24 +0000 (12:12 +0200)
Currently, ath79 SoCs use the default ARCH_DMA_MINALIGN value of 128
bytes defined in mach-generic. This is excessive for these platforms
and leads to significant memory waste in kmalloc.

Override ARCH_DMA_MINALIGN to use L1_CACHE_BYTES, which is 32 bytes for
ath79 SoCs.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/include/asm/mach-ath79/kmalloc.h [new file with mode: 0644]

diff --git a/arch/mips/include/asm/mach-ath79/kmalloc.h b/arch/mips/include/asm/mach-ath79/kmalloc.h
new file mode 100644 (file)
index 0000000..954f5d6
--- /dev/null
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef __ASM_MACH_ATH79_KMALLOC_H
+#define __ASM_MACH_ATH79_KMALLOC_H
+
+#define ARCH_DMA_MINALIGN      L1_CACHE_BYTES
+
+#endif /* __ASM_MACH_ATH79_KMALLOC_H */