]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
common/spl: fix endless loop in spl_fit_append_fdt()
authorMichael Walle <mwalle@kernel.org>
Fri, 31 Oct 2025 13:13:52 +0000 (14:13 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 6 Nov 2025 14:31:14 +0000 (08:31 -0600)
Technically, commit 24bf44cf88e7 ("spl: fit: Do not fail immediately if
an overlay is not available") introduced that regression as the code
will never advance if spl_fit_get_image_name() will return an error. But
at that time, spl_fit_get_image_node() was used in spl_fit_append_fdt()
which calls fdt_subnode_offset() to get the image node. And I presume
the commit was about the latter failing gracefully and trying the next
one.

But with commit b13eaf3bb4e6 ("spl: fit: Add board level function to
decide application of DTO") that behavior changed and the loop in
spl_fit_append_fdt() no longer uses spl_fit_get_image_node() but
spl_fit_get_image_name() directly. Thus it doesn't make any sense to not
break the loop if that fails.

Also, the original use case of commit 24bf44cf88e7 ("spl: fit: Do not
fail immediately if an overlay is not available") is preserved because
spl_subnode_offset() is now called within the loop and errors are
handled gracefully (and advancing the index).

Fixes: b13eaf3bb4e6 ("spl: fit: Add board level function to decide application of DTO")
Signed-off-by: Michael Walle <mwalle@kernel.org>
common/spl/spl_fit.c

index 746c3d2fa28d1b196cadee4c44387f6d4188e563..d8cb2aa2fa3cdc794da5c20cef03e1ca3986eeab 100644 (file)
@@ -448,8 +448,8 @@ static int spl_fit_append_fdt(struct spl_image_info *spl_image,
                                debug("%s: No additional FDT node\n", __func__);
                                ret = 0;
                                break;
-                       } else if (ret < 0) {
-                               continue;
+                       } else if (ret) {
+                               break;
                        }
 
                        ret = board_spl_fit_append_fdt_skip(str);