[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 46/52] xen: carve out a generic parsing function from _cmdline_parse()
In order to support generic parameter parsing carve out the parser from _cmdline_parse(). As this generic function might be called after boot remove the __init annotations from all called sub-functions. Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Cc: George Dunlap <George.Dunlap@xxxxxxxxxxxxx> Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Cc: Jan Beulich <jbeulich@xxxxxxxx> Cc: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx> Cc: Tim Deegan <tim@xxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Reviewed-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/common/kernel.c | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/xen/common/kernel.c b/xen/common/kernel.c index 756380be5b..c05198b226 100644 --- a/xen/common/kernel.c +++ b/xen/common/kernel.c @@ -23,8 +23,7 @@ enum system_state system_state = SYS_STATE_early_boot; xen_commandline_t saved_cmdline; static const char __initconst opt_builtin_cmdline[] = CONFIG_CMDLINE; -static int __init assign_integer_param( - const struct kernel_param *param, uint64_t val) +static int assign_integer_param(const struct kernel_param *param, uint64_t val) { unsigned int bits = param->len * BITS_PER_BYTE; @@ -50,12 +49,13 @@ static int __init assign_integer_param( -EOVERFLOW : 0; } -static void __init _cmdline_parse(const char *cmdline) +static int parse_params(const char *cmdline, const struct kernel_param *start, + const struct kernel_param *end) { char opt[128], *optval, *optkey, *q; const char *p = cmdline, *s; const struct kernel_param *param; - int bool_assert, rc = 0; + int bool_assert, rc = 0, final_rc = 0; for ( ; ; ) { @@ -93,7 +93,7 @@ static void __init _cmdline_parse(const char *cmdline) if ( !bool_assert ) optkey += 3; - for ( param = __setup_start; param < __setup_end; param++ ) + for ( param = start; param < end; param++ ) { if ( strcmp(param->name, optkey) ) { @@ -158,11 +158,24 @@ static void __init _cmdline_parse(const char *cmdline) } if ( rc ) + { printk("parameter \"%s\" has invalid value \"%s\"!\n", optkey, optval); - if ( param >= __setup_end ) + final_rc = rc; + } + if ( param >= end ) + { printk("parameter \"%s\" unknown!\n", optkey); + final_rc = -EINVAL; + } } + + return final_rc; +} + +static void __init _cmdline_parse(const char *cmdline) +{ + parse_params(cmdline, __setup_start, __setup_end); } /** @@ -187,7 +200,7 @@ void __init cmdline_parse(const char *cmdline) #endif } -int __init parse_bool(const char *s) +int parse_bool(const char *s) { if ( !strcmp("no", s) || !strcmp("off", s) || -- 2.12.3 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |