projects
/
haproxy-2.5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63ee0e4
)
DEV: coccinelle: Add bug_on.cocci
author
Tim Duesterhus
<tim@bastelstu.be>
Wed, 15 Sep 2021 11:58:48 +0000
(13:58 +0200)
committer
Willy Tarreau
<w@1wt.eu>
Fri, 17 Sep 2021 15:22:05 +0000
(17:22 +0200)
This replaces an if + ABORT_NOW() by BUG_ON(). It might change behavior,
because BUG_ON will result in a no-op if not enabled.
dev/coccinelle/bug_on.cocci
[new file with mode: 0644]
patch
|
blob
diff --git a/dev/coccinelle/bug_on.cocci
b/dev/coccinelle/bug_on.cocci
new file mode 100644
(file)
index 0000000..
3837879
--- /dev/null
+++ b/
dev/coccinelle/bug_on.cocci
@@ -0,0
+1,7
@@
+@@
+expression E;
+@@
+
+- if (E)
+- ABORT_NOW();
++ BUG_ON(E);