diff mbox series

[28/46] um: resrved_mem: Move fdt_init_reserved_mem() below unflatten_device_tree()

Message ID 20240126235425.12233-29-quic_obabatun@quicinc.com (mailing list archive)
State Not Applicable
Headers show
Series Dynamic allocation of reserved_mem array. | expand

Commit Message

Oreoluwa Babatunde Jan. 26, 2024, 11:54 p.m. UTC
The unflattened devicetree structure is available to be used not long
after the page tables have been set up on most architectures, and is
available even before that on other architectures.

Hence, move the call to fdt_init_reserved_mem() to after
unflatten_device_tree() is called so that the reserved memory nodes can
be accessed using the unflattened device tree APIs.

Using the unflattened devicetree APIs is more efficient than using the
flattened devicetree APIs.

Signed-off-by: Oreoluwa Babatunde <quic_obabatun@quicinc.com>
---
 arch/um/kernel/dtb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/arch/um/kernel/dtb.c b/arch/um/kernel/dtb.c
index 3ecee151a083..ad6003412319 100644
--- a/arch/um/kernel/dtb.c
+++ b/arch/um/kernel/dtb.c
@@ -27,8 +27,8 @@  void uml_dtb_init(void)
 	}
 
 	early_fdt_scan_reserved_mem();
-	fdt_init_reserved_mem();
 	unflatten_device_tree();
+	fdt_init_reserved_mem();
 }
 
 static int __init uml_dtb_setup(char *line, int *add)