mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-28 23:23:59 +00:00
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
|
From 624eb357e1a16385b3d6171e9194e4c5f8d4fd5f Mon Sep 17 00:00:00 2001
|
||
|
From: Dom Cobley <popcornmix@gmail.com>
|
||
|
Date: Wed, 23 Oct 2024 19:09:18 +0100
|
||
|
Subject: [PATCH] dts: 2712: Drop some numa options from bootargs
|
||
|
|
||
|
iommu_dma_numa_policy=interleave is not valid in the current tree
|
||
|
It generates an unknown setting will be passed to usespace warning
|
||
|
|
||
|
system_heap.max_order=0 is wanted when numa is enabled, but may not
|
||
|
be when it is disabled.
|
||
|
|
||
|
Add it on firmware side when we know if numa=fake=<n> is used.
|
||
|
|
||
|
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
|
||
|
---
|
||
|
arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi
|
||
|
+++ b/arch/arm64/boot/dts/broadcom/bcm2712-rpi.dtsi
|
||
|
@@ -99,7 +99,7 @@
|
||
|
|
||
|
/ {
|
||
|
chosen: chosen {
|
||
|
- bootargs = "reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave iommu_dma_numa_policy=interleave system_heap.max_order=0";
|
||
|
+ bootargs = "reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave";
|
||
|
stdout-path = "serial10:115200n8";
|
||
|
};
|
||
|
|