* [PATCH] mm/memblock: simplify reserve_mem_init error handling
@ 2026-08-21 3:32 Hongfu Li
0 siblings, 0 replies; only message in thread
From: Hongfu Li @ 2026-08-21 3:32 UTC (permalink / raw)
To: rppt, akpm
Cc: graf, pasha.tatashin, linux-mm, linux-kernel, hongfu.li,
Hongfu Li
From: Hongfu Li <lihongfu@kylinos.cn>
Return prepare_kho_fdt() directly instead of assigning to a local and
returning it on both success and failure paths.
Signed-off-by: Hongfu Li <lihongfu@kylinos.cn>
---
mm/memblock.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/mm/memblock.c b/mm/memblock.c
index 777c69f05400..7079b93ec730 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -2616,15 +2616,10 @@ static int __init prepare_kho_fdt(void)
static int __init reserve_mem_init(void)
{
- int err;
-
if (!kho_is_enabled() || !reserved_mem_count)
return 0;
- err = prepare_kho_fdt();
- if (err)
- return err;
- return err;
+ return prepare_kho_fdt();
}
late_initcall(reserve_mem_init);
--
2.54.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-21 3:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-21 3:32 [PATCH] mm/memblock: simplify reserve_mem_init error handling Hongfu Li
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.