aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2016-09-22 04:28:55 -0400
committerMichal Marek <mmarek@suse.com>2016-10-01 17:03:41 -0400
commitd97629f1686574a800a76eb0d2ce65e3f3d3ef92 (patch)
tree05f8679e358f3dffa880ffa3e15dee7dc0a327df
parent43d96390d57aa0e61d15ce2bcb887df8516d58f5 (diff)
Coccinelle: pm_runtime: ensure relevance of pm_runtime reports
pm_runtime.cocci starts with one rule that searches for a variety of functions calls, followed by various rules that report errors. Previously, the only connection between the first rule and the rest was to check that the first rule had matched somewhere. Change the rules to propagate a position from the first rule to the others, to make sure that the sites reported on are the same as the sites that were identified as having the relevant functions. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Michal Marek <mmarek@suse.com>
-rw-r--r--scripts/coccinelle/api/pm_runtime.cocci18
1 files changed, 11 insertions, 7 deletions
diff --git a/scripts/coccinelle/api/pm_runtime.cocci b/scripts/coccinelle/api/pm_runtime.cocci
index 89b98a2f7a6f..d67ccf5f8227 100644
--- a/scripts/coccinelle/api/pm_runtime.cocci
+++ b/scripts/coccinelle/api/pm_runtime.cocci
@@ -17,9 +17,10 @@ virtual report
17 17
18@runtime_bad_err_handle exists@ 18@runtime_bad_err_handle exists@
19expression ret; 19expression ret;
20position p;
20@@ 21@@
21( 22(
22ret = \(pm_runtime_idle\| 23ret@p = \(pm_runtime_idle\|
23 pm_runtime_suspend\| 24 pm_runtime_suspend\|
24 pm_runtime_autosuspend\| 25 pm_runtime_autosuspend\|
25 pm_runtime_resume\| 26 pm_runtime_resume\|
@@ -47,12 +48,13 @@ IS_ERR_VALUE(ret)
47// For context mode 48// For context mode
48//---------------------------------------------------------- 49//----------------------------------------------------------
49 50
50@depends on runtime_bad_err_handle && context@ 51@depends on context@
51identifier pm_runtime_api; 52identifier pm_runtime_api;
52expression ret; 53expression ret;
54position runtime_bad_err_handle.p;
53@@ 55@@
54( 56(
55ret = pm_runtime_api(...); 57ret@p = pm_runtime_api(...);
56... 58...
57* IS_ERR_VALUE(ret) 59* IS_ERR_VALUE(ret)
58... 60...
@@ -62,12 +64,13 @@ ret = pm_runtime_api(...);
62// For patch mode 64// For patch mode
63//---------------------------------------------------------- 65//----------------------------------------------------------
64 66
65@depends on runtime_bad_err_handle && patch@ 67@depends on patch@
66identifier pm_runtime_api; 68identifier pm_runtime_api;
67expression ret; 69expression ret;
70position runtime_bad_err_handle.p;
68@@ 71@@
69( 72(
70ret = pm_runtime_api(...); 73ret@p = pm_runtime_api(...);
71... 74...
72- IS_ERR_VALUE(ret) 75- IS_ERR_VALUE(ret)
73+ ret < 0 76+ ret < 0
@@ -78,13 +81,14 @@ ret = pm_runtime_api(...);
78// For org and report mode 81// For org and report mode
79//---------------------------------------------------------- 82//----------------------------------------------------------
80 83
81@r depends on runtime_bad_err_handle && (org || report) exists@ 84@r depends on (org || report) exists@
82position p1, p2; 85position p1, p2;
83identifier pm_runtime_api; 86identifier pm_runtime_api;
84expression ret; 87expression ret;
88position runtime_bad_err_handle.p;
85@@ 89@@
86( 90(
87ret = pm_runtime_api@p1(...); 91ret@p = pm_runtime_api@p1(...);
88... 92...
89IS_ERR_VALUE@p2(ret) 93IS_ERR_VALUE@p2(ret)
90... 94...