diff options
| author | Julia Lawall <[email protected]> | 2008-07-11 19:27:31 -0400 |
|---|---|---|
| committer | Theodore Ts'o <[email protected]> | 2008-07-11 19:27:31 -0400 |
| commit | 07d45f126712fea3a9f44068bf65e0a26a162286 (patch) | |
| tree | ebec27bdfd455f306fcc20c4f8e8816df090d739 /tools/perf/scripts/python | |
| 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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions