Btrfs: use BUG_ON
authorHIMANGI SARAOGI <himangi774@gmail.com>
Tue, 8 Jul 2014 22:21:41 +0000 (03:51 +0530)
committerChris 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>
fs/btrfs/volumes.c

index 48c3572..7f25ff1 100644 (file)
@@ -2677,8 +2677,8 @@ again:
                                                   found_key.offset);
                        if (ret == -ENOSPC)
                                failed++;
-                       else if (ret)
-                               BUG();
+                       else
+                               BUG_ON(ret);
                }
 
                if (found_key.offset == 0)