On Mon, Jul 1, 2024 at 3:55 PM Heinrich Schuchardt <heinrich.schuchardt@xxxxxxxxxxxxx> wrote: > > fdt_num_mem_rsv() may return -FDT_ERR_TRUNCATED. > In this case fdt_pack() should propagate the error code. > > Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@xxxxxxxxxxxxx> > --- > libfdt/fdt_rw.c | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) This needs to be sent to David G and devicetree-compiler list to be applied. > > diff --git a/libfdt/fdt_rw.c b/libfdt/fdt_rw.c > index 3621d36..a307701 100644 > --- a/libfdt/fdt_rw.c > +++ b/libfdt/fdt_rw.c > @@ -490,8 +490,11 @@ int fdt_pack(void *fdt) > > FDT_RW_PROBE(fdt); > > - mem_rsv_size = (fdt_num_mem_rsv(fdt)+1) > - * sizeof(struct fdt_reserve_entry); > + mem_rsv_size = fdt_num_mem_rsv(fdt); > + if (mem_rsv_size < 0) > + return mem_rsv_size; > + > + mem_rsv_size = (mem_rsv_size + 1) * sizeof(struct fdt_reserve_entry); > fdt_packblocks_(fdt, fdt, mem_rsv_size, fdt_size_dt_struct(fdt), > fdt_size_dt_strings(fdt)); > fdt_set_totalsize(fdt, fdt_data_size_(fdt)); > -- > 2.45.2 > >