[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] arm: fix Dom build after cd8015b634
The removal of the VLA there has changed sizeof() for the array. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- Untested; purely based on looking at the code. --- a/xen/arch/arm/domain_build.c +++ b/xen/arch/arm/domain_build.c @@ -568,7 +568,7 @@ static int __init make_memory_node(const struct domain *d, dt_child_set_range(&cells, addrcells, sizecells, start, size); } - res = fdt_property(fdt, "reg", reg, sizeof(reg)); + res = fdt_property(fdt, "reg", reg, nr_cells * sizeof(*reg)); if ( res ) return res; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |