Discussion:
[Cocci] [PATCH] Coccinelle: setup_timer: improve messages from setup_timer
Julia Lawall
2017-08-23 13:11:13 UTC
Permalink
Allow messages about multiple timers.

Signed-off-by: Julia Lawall <***@lip6.fr>

---
scripts/coccinelle/api/setup_timer.cocci | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/scripts/coccinelle/api/setup_timer.cocci b/scripts/coccinelle/api/setup_timer.cocci
index eb6bd9e..b5ab031 100644
--- a/scripts/coccinelle/api/setup_timer.cocci
+++ b/scripts/coccinelle/api/setup_timer.cocci
@@ -104,11 +104,9 @@ position j0, j1, j2;
)

@match_function_and_data_after_init_timer_context
-depends on !patch &&
-!match_immediate_function_data_after_init_timer_context &&
- (context || org || report)@
+depends on !patch && (context || org || report)@
expression a, b, e1, e2, e3, e4, e5;
-position j0, j1, j2;
+position j0 != match_immediate_function_data_after_init_timer_context.j0,j1,j2;
@@

* ***@j0 (&e1);
@@ -124,13 +122,12 @@ position j0, j1, j2;
* ***@j2.function = a;
)

-@r3_context depends on !patch &&
-!match_immediate_function_data_after_init_timer_context &&
-!match_function_and_data_after_init_timer_context &&
- (context || org || report)@
+@r3_context depends on !patch && (context || org || report)@
expression c, e6, e7;
position r1.p;
-position j0, j1;
+position j0 !=
+ {match_immediate_function_data_after_init_timer_context.j0,
+ match_function_and_data_after_init_timer_context.j0}, j1;
@@

* ***@j0@p (&e6);
Masahiro Yamada
2017-11-07 00:19:51 UTC
Permalink
Post by Julia Lawall
Allow messages about multiple timers.
---
Applied to linux-kbuild/misc.
--
Best Regards
Masahiro Yamada
Julia Lawall
2017-11-08 13:05:00 UTC
Permalink
Post by Masahiro Yamada
Post by Julia Lawall
Allow messages about multiple timers.
---
Applied to linux-kbuild/misc.
Thanks!

julia

Loading...