[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/3] xl: introduce a function to get shutdown action name
The array to map libxl_shutdown_action_to_shutdown to string is going to be moved to a dedicated file. Provide a function to do the translation so that we don't need to make the array globally visible. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/xl/xl_cmdimpl.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/xl/xl_cmdimpl.c b/tools/xl/xl_cmdimpl.c index 86c70f5a22..d027d53a3f 100644 --- a/tools/xl/xl_cmdimpl.c +++ b/tools/xl/xl_cmdimpl.c @@ -101,6 +101,11 @@ static const char *action_on_shutdown_names[] = { [LIBXL_ACTION_ON_SHUTDOWN_SOFT_RESET] = "soft-reset", }; +static const char *get_action_on_shutdown_name(libxl_action_on_shutdown a) +{ + return action_on_shutdown_names[a]; +} + /* Optional data, in order: * 4 bytes uint32_t config file size * n bytes config file in Unix text file format @@ -2442,7 +2447,7 @@ static domain_restart_type handle_domain_death(uint32_t *r_domid, LOG("Action for shutdown reason code %d is %s", event->u.domain_shutdown.shutdown_reason, - action_on_shutdown_names[action]); + get_action_on_shutdown_name(action)); if (action == LIBXL_ACTION_ON_SHUTDOWN_COREDUMP_DESTROY || action == LIBXL_ACTION_ON_SHUTDOWN_COREDUMP_RESTART) { char *corefile; -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |