diff options
author | Julia Lawall <julia@diku.dk> | 2008-07-11 19:27:31 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-07-11 19:27:31 -0400 |
commit | 07d45f126712fea3a9f44068bf65e0a26a162286 (patch) | |
tree | ebec27bdfd455f306fcc20c4f8e8816df090d739 /fs/ext4/balloc.c | |
parent | ed8f9c751feb3aebf7c0dd25e61481a16412bd6e (diff) |
ext4: Use BUG_ON() instead of BUG()
if (...) BUG(); should be replaced with BUG_ON(...) when the test has no
side-effects to allow a definition of BUG_ON that drops the code completely.
The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@ disable unlikely @ expression E,f; @@
(
if (<... f(...) ...>) { BUG(); }
|
- if (unlikely(E)) { BUG(); }
+ BUG_ON(E);
)
@@ expression E,f; @@
(
if (<... f(...) ...>) { BUG(); }
|
- if (E) { BUG(); }
+ BUG_ON(E);
)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/balloc.c')
-rw-r--r-- | fs/ext4/balloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index 9cc80b9cc8d8..c29d774abe55 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c | |||
@@ -409,8 +409,7 @@ restart: | |||
409 | prev = rsv; | 409 | prev = rsv; |
410 | } | 410 | } |
411 | printk("Window map complete.\n"); | 411 | printk("Window map complete.\n"); |
412 | if (bad) | 412 | BUG_ON(bad); |
413 | BUG(); | ||
414 | } | 413 | } |
415 | #define rsv_window_dump(root, verbose) \ | 414 | #define rsv_window_dump(root, verbose) \ |
416 | __rsv_window_dump((root), (verbose), __func__) | 415 | __rsv_window_dump((root), (verbose), __func__) |