mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 21:35:46 +02:00
coccinelle: Add rules to find str_enable{d}_disable{d}() replacements
As other rules done, we add rules for str_enable{d}_ disable{d}() to check the relative opportunities. Signed-off-by: Hongbo Li <lihongbo22@huawei.com> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
This commit is contained in:
parent
5b7ca4507d
commit
dd2275d349
|
@ -203,3 +203,41 @@ e << str_low_high_r.E;
|
||||||
@@
|
@@
|
||||||
|
|
||||||
coccilib.report.print_report(p[0], "opportunity for str_low_high(%s)" % e)
|
coccilib.report.print_report(p[0], "opportunity for str_low_high(%s)" % e)
|
||||||
|
|
||||||
|
@str_enable_disable depends on patch@
|
||||||
|
expression E;
|
||||||
|
@@
|
||||||
|
- ((E) ? "enable" : "disable")
|
||||||
|
+ str_enable_disable(E)
|
||||||
|
|
||||||
|
@str_enable_disable_r depends on !patch exists@
|
||||||
|
expression E;
|
||||||
|
position P;
|
||||||
|
@@
|
||||||
|
* ((E@P) ? "enable" : "disable")
|
||||||
|
|
||||||
|
@script:python depends on report@
|
||||||
|
p << str_enable_disable_r.P;
|
||||||
|
e << str_enable_disable_r.E;
|
||||||
|
@@
|
||||||
|
|
||||||
|
coccilib.report.print_report(p[0], "opportunity for str_enable_disable(%s)" % e)
|
||||||
|
|
||||||
|
@str_enabled_disabled depends on patch@
|
||||||
|
expression E;
|
||||||
|
@@
|
||||||
|
- ((E) ? "enabled" : "disabled")
|
||||||
|
+ str_enabled_disabled(E)
|
||||||
|
|
||||||
|
@str_enabled_disabled_r depends on !patch exists@
|
||||||
|
expression E;
|
||||||
|
position P;
|
||||||
|
@@
|
||||||
|
* ((E@P) ? "enabled" : "disabled")
|
||||||
|
|
||||||
|
@script:python depends on report@
|
||||||
|
p << str_enabled_disabled_r.P;
|
||||||
|
e << str_enabled_disabled_r.E;
|
||||||
|
@@
|
||||||
|
|
||||||
|
coccilib.report.print_report(p[0], "opportunity for str_enabled_disabled(%s)" % e)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user