[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT PATCH 4/4] lib/ukboot: Iterate through the inittab
On 20.09.19 17:16, Sharan Santhanam wrote: Add support to iterate through the inittab and call the init functions. Signed-off-by: Sharan Santhanam <sharan.santhanam@xxxxxxxxx> --- include/uk/init.h | 6 ++++++ lib/ukboot/boot.c | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/include/uk/init.h b/include/uk/init.h index 91cb6ef..466c956 100644 --- a/include/uk/init.h +++ b/include/uk/init.h @@ -59,6 +59,12 @@ typedef int (*uk_init_t)(void); #define uk_sys_initcall(fn) uk_sys_initcall_prio(fn, 9) #define uk_late_initcall(fn) uk_late_initcall_prio(fn, 9)+extern const uk_init_t uk_inittab_start[];+extern const uk_init_t uk_inittab_end; + +#define uk_inittab_foreach(init_start, init_end, itr) \ + for (itr = DECONST(uk_init_t*, init_start); itr < &init_end; itr++) + #ifdef __cplusplus } #endif /* __cplusplus */ diff --git a/lib/ukboot/boot.c b/lib/ukboot/boot.c index 7fb0908..7044d1b 100644 --- a/lib/ukboot/boot.c +++ b/lib/ukboot/boot.c @@ -56,6 +56,7 @@ #include <uk/essentials.h> #include <uk/print.h> #include <uk/ctors.h> +#include <uk/init.h> #include <uk/argparse.h> #if CONFIG_LIBUKBUS #include <uk/bus.h> @@ -81,6 +82,20 @@ static void main_thread_func(void *arg) int i; int ret; struct thread_main_arg *tma = arg; + uk_init_t *itr; + + /** + * Run init table + */ + uk_pr_info("Init Table @ %p - %p\n", &uk_inittab_start[0], + &uk_inittab_end); + uk_inittab_foreach(uk_inittab_start, uk_inittab_end, itr) { + ret = (*itr)(); + if (ret < 0) { Hum, could you add an error or debug message in the form of: "Init function %p returned with error %d\n"Just for the case that some init functions may not print the error case properly. Then this could be still debugged by console messages. + ret = UKPLAT_CRASH; + goto exit; + } + }#ifdef CONFIG_LIBUKBUSuk_pr_info("Initialize bus handlers...\n"); @@ -149,6 +164,8 @@ static void main_thread_func(void *arg) ret = main(tma->argc, tma->argv); uk_pr_info("main returned %d, halting system\n", ret); ret = (ret != 0) ? UKPLAT_CRASH : UKPLAT_HALT; + +exit: ukplat_terminate(ret); /* does not return */ }@@ -239,6 +256,10 @@ void ukplat_entry(int argc, char *argv[])} #endif+/**+ * Adding the init table. + */ + #if CONFIG_LIBUKALLOC uk_pr_info("Initialize IRQ subsystem...\n"); rc = ukplat_irq_init(a); _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |