[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v4 19/53] xen/arch/x86/psr.c: let custom parameter parsing routines return errno
>>> On 23.08.17 at 19:34, <jgross@xxxxxxxx> wrote: > --- a/xen/arch/x86/psr.c > +++ b/xen/arch/x86/psr.c > @@ -418,50 +418,66 @@ static const struct feat_props l2_cat_props = { > .write_msr = l2_cat_write_msr, > }; > > -static void __init parse_psr_bool(char *s, char *value, char *feature, > +static bool __init parse_psr_bool(const char *s, const char *value, > + const char *ss, const char *feature, > unsigned int mask) > { > - if ( !strcmp(s, feature) ) > + if ( !strncmp(s, feature, value - s) ) > { > - if ( !value ) > + if ( !*value ) > opt_psr |= mask; > else > { > - int val_int = parse_bool(value, NULL); > + int val_int = parse_bool(value + 1, ss); Why "+ 1" here? Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |