[PATCH v2 06/13] kho: Always expose output FDT in debugfs
Pasha Tatashin
pasha.tatashin at soleen.com
Fri Nov 14 10:59:55 PST 2025
Currently, the output FDT is added to debugfs only when KHO is
finalized and removed when aborted.
There is no need to hide the FDT based on the state. Always expose it
starting from initialization. This aids the transition toward removing
the explicit abort functionality and converting KHO to be fully
stateless.
Signed-off-by: Pasha Tatashin <pasha.tatashin at soleen.com>
Reviewed-by: Mike Rapoport (Microsoft) <rppt at kernel.org>
Reviewed-by: Pratyush Yadav <pratyush at kernel.org>
---
kernel/liveupdate/kexec_handover.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/kernel/liveupdate/kexec_handover.c b/kernel/liveupdate/kexec_handover.c
index bed611bae1df..3e32c61a64b1 100644
--- a/kernel/liveupdate/kexec_handover.c
+++ b/kernel/liveupdate/kexec_handover.c
@@ -1234,8 +1234,6 @@ int kho_abort(void)
__kho_abort();
kho_out.finalized = false;
- kho_debugfs_fdt_remove(&kho_out.dbg, kho_out.fdt);
-
return 0;
}
@@ -1306,9 +1304,6 @@ int kho_finalize(void)
kho_out.finalized = true;
- WARN_ON_ONCE(kho_debugfs_fdt_add(&kho_out.dbg, "fdt",
- kho_out.fdt, true));
-
return 0;
}
@@ -1425,6 +1420,9 @@ static __init int kho_init(void)
init_cma_reserved_pageblock(pfn_to_page(pfn));
}
+ WARN_ON_ONCE(kho_debugfs_fdt_add(&kho_out.dbg, "fdt",
+ kho_out.fdt, true));
+
return 0;
err_free_fdt:
--
2.52.0.rc1.455.g30608eb744-goog
More information about the kexec
mailing list