git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7880991
)
Btrfs: use BUG_ON
author
HIMANGI SARAOGI
<himangi774@gmail.com>
Tue, 8 Jul 2014 22:21:41 +0000
(
03:51
+0530)
committer
Chris Mason
<clm@fb.com>
Wed, 17 Sep 2014 20:37:34 +0000
(13:37 -0700)
Use BUG_ON(x) rather than if(x) BUG();
The semantic patch that fixes this problem is as follows:
// <smpl>
@@ identifier x; @@
-if (x) BUG();
+BUG_ON(x);
// </smpl>
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Chris Mason <clm@fb.com>
No differences found