From: Zijun Hu <quic_zijuhu@xxxxxxxxxxx> commit 267b21d0bef8e67dbe6c591c9991444e58237ec9 upstream. According to DT spec, size of property 'alignment' is based on parent node’s #size-cells property. But __reserved_mem_alloc_size() wrongly uses @dt_root_addr_cells to get the property obviously. Fix by using @dt_root_size_cells instead of @dt_root_addr_cells. Fixes: 3f0c82066448 ("drivers: of: add initialization code for dynamic reserved memory") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Zijun Hu <quic_zijuhu@xxxxxxxxxxx> Link: https://lore.kernel.org/r/20250109-of_core_fix-v4-9-db8a72415b8c@xxxxxxxxxxx Signed-off-by: Rob Herring (Arm) <robh@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/of/of_reserved_mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/of/of_reserved_mem.c +++ b/drivers/of/of_reserved_mem.c @@ -96,12 +96,12 @@ static int __init __reserved_mem_alloc_s prop = of_get_flat_dt_prop(node, "alignment", &len); if (prop) { - if (len != dt_root_addr_cells * sizeof(__be32)) { + if (len != dt_root_size_cells * sizeof(__be32)) { pr_err("invalid alignment property in '%s' node.\n", uname); return -EINVAL; } - align = dt_mem_next_cell(dt_root_addr_cells, &prop); + align = dt_mem_next_cell(dt_root_size_cells, &prop); } /* Need adjust the alignment to satisfy the CMA requirement */ Patches currently in stable-queue which might be from quic_zijuhu@xxxxxxxxxxx are queue-5.4/of-reserved-memory-fix-using-wrong-number-of-cells-to-get-property-alignment.patch queue-5.4/of-fix-of_find_node_opts_by_path-handling-of-alias-path-options.patch queue-5.4/pci-endpoint-destroy-the-epc-device-in-devm_pci_epc_.patch queue-5.4/of-correct-child-specifier-used-as-input-of-the-2nd-nexus-node.patch