[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110323160120.GA8770@kroah.com>
Date: Wed, 23 Mar 2011 09:01:20 -0700
From: Greg KH <greg@...ah.com>
To: Alexey Dobriyan <adobriyan@...il.com>
Cc: Jonathan Cameron <jic23@....ac.uk>, linux-kernel@...r.kernel.org,
rusty@...tcorp.com.au
Subject: Re: [PATCH 1/3] Add a kstrtobool function matching semantics of
existing in kernel equivalents.
On Wed, Mar 23, 2011 at 05:30:11PM +0200, Alexey Dobriyan wrote:
> On Wed, Mar 23, 2011 at 3:39 PM, Jonathan Cameron <jic23@....ac.uk> wrote:
> > +int kstrtobool(const char *s, bool *res)
> > +{
> > + switch (s[0]) {
> > + case 'y':
> > + case 'Y':
> > + case '1':
> > + *res = true;
> > + case 'n':
> > + case 'N':
> > + case '0':
> > + *res = false;
> > + default:
> > + return -EINVAL;
> > + }
> > + return 0;
> > +}
>
> sigh... such simple thing and so many bugs
>
> The only values such function should accept is 0 and 1.
Why? That's not the way the existing kernel functions that use this
work.
> Have you read the rest of kstrto*() code?
> Where is newline check?
>
> Anyway, I think it's better do not exist.
I think it is, as it's already duplicated in at least 2 different places
in the kernel, and probably more. Once we get this implementation
working correctly, we don't need to rewrite it again.
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists