Re: [PATCH] coccinelle: api: add kvfree script

From: Julia Lawall
Date: Sat Jun 06 2020 - 10:39:19 EST




On Sat, 6 Jun 2020, Markus Elfring wrote:

> > +@choice@
> > +expression E, E1;
> > +position kok, vok;
> > +@@
> > +
> > +(
> > + if (...) {
> > + ...
> > + E = \(kmalloc@kok\|â\)(...)
>
> Further implementation details from this SmPL script caught my software
> development attention.
>
> * Is there a need to add the specification âwhen anyâ to the SmPL ellipses
> before such assignment statements?

Having multiple assignments to kmalloc in one if seems unlikely, and
perhaps one would want to think about such a case differently, so it seems
ok as is.

>
> * A limited search approach was expressed. Will additional source code variations
> become relevant?
> + switch statement
> + if branches with single statements
> + conditional operator

The point is that there is a kmalloc in one branch and a vmalloc in
another branch, so a if with a single branch doesn't seem relevant.

The other cases sem highly improbable.

>
> > +@opportunity depends on !patch â@
> â
> > + E = \(kmalloc\|â\)(..., size, ...)
> > + ... when != E = E1
> > + when != size = E1
>
> I wonder that two assignments should be excluded here according to
> the same expression metavariable.

Doesn't matter. The metavariables are considered separately in the
different whens.

>
> +@pkfree depends on patch exists@
> â
> +- \(kfree\|kvfree\)(E)
> ++ vfree(E)
>
> Would you like to use a SmPL code variant like the following
> at any more places?
> (Is it occasionally helpful to increase the change precision?)
>
> +-\(kfree\|kvfree\)
> ++vfree
> + (E)

"increase the change precision" seems to be an obscure way to say "improve
the formatting". Indeed, leaving (E) as is would have the effect of not
changing the formatting. But the problem seems unlikely for a functoin
with such a short name. And this presentation will likely run afoul of
the fact that you can't attach + code to a disjunction. So the original
presentation was more concise, and should be fine in practice.

julia