RE: [RFC PATCH v1 07/12] efi: Replace strstarts() by str_has_prefix().

From: David Laight
Date: Mon Dec 07 2020 - 11:27:19 EST


From: Steven Rostedt
> Sent: 07 December 2020 15:10

>
> On Sat, 05 Dec 2020 15:04:31 -0800
> James Bottomley <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx> wrote:
>
> > Well, I think the pattern
> >
> > if (strstarts(option, <string>)) {
> > ...
> > option += strlen(<same string>);
> >
> > is a bad one because one day <string> may get updated but not <same
> > string>. And if <same string> is too far away in the code it might not
> > even show up in the diff, leading to reviewers not noticing either. So
> > I think eliminating the pattern is a definite improvement.
>
> And one of the reasons we created str_has_prefix() is because we fixed that
> exact bug, in a few places.
>
> It was caused by a typo, where we had something like:
>
> strstarts(option, "foo=") {
> option += strlen("foo");
>
> and forgot the "=" part, and broke the rest of the logic.

And then someone else wonders whether the paint is the right colour.
Maybe the function should return the pointer to the character
after the prefix.

Suddenly you have a load of functions to pick from, none do
quite what you want - so you add yet another :-)

David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)