Julia Lawall
8d4b69002e
fs/affs/file.c: use BUG_ON
...
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>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-04-29 08:06:02 -07:00
..
2008-04-25 09:23:25 -04:00
2008-04-29 08:05:59 -07:00
2008-04-29 08:06:02 -07:00
2008-04-16 07:43:48 -07:00
2008-02-08 09:22:40 -08:00
2008-04-29 08:06:01 -07:00
2008-04-29 08:05:59 -07:00
2008-04-25 09:23:25 -04:00
2008-04-29 08:05:59 -07:00
2008-02-14 21:13:33 -08:00
2008-04-18 22:16:44 -04:00
2008-03-04 14:47:06 -08:00
2008-02-08 09:22:40 -08:00
2008-04-22 13:44:23 -07:00
2008-03-19 18:53:36 -07:00
2008-04-02 15:28:19 -07:00
2008-04-28 08:58:43 -07:00
2008-04-28 08:58:45 -07:00
2008-04-28 08:58:33 -07:00
2008-04-28 08:58:47 -07:00
2008-04-29 08:06:00 -07:00
2008-04-25 09:23:25 -04:00
2008-04-28 08:58:18 -07:00
2008-04-29 08:06:01 -07:00
2008-04-29 08:06:02 -07:00
2008-02-05 09:44:30 -08:00
2008-02-08 09:22:40 -08:00
2008-03-19 06:42:18 -04:00
2008-04-28 08:58:25 -07:00
2008-03-19 18:53:36 -07:00
2008-04-28 08:58:45 -07:00
2008-03-30 14:18:41 -07:00
2008-04-23 16:43:15 +01:00
2008-04-19 00:29:24 -04:00
2008-04-25 13:00:11 -04:00
2008-02-07 08:42:28 -08:00
2008-04-28 08:58:47 -07:00
2008-04-28 08:58:29 -07:00
2008-04-25 09:23:25 -04:00
2008-04-25 13:00:11 -04:00
2008-02-05 09:44:14 -08:00
2008-04-19 00:29:24 -04:00
2008-02-07 08:42:29 -08:00
2008-04-28 08:58:47 -07:00
2008-04-28 08:58:22 -07:00
2008-02-07 08:42:28 -08:00
2008-04-29 08:06:00 -07:00
2008-04-28 08:58:46 -07:00
2008-03-19 18:53:36 -07:00
2008-03-30 14:18:41 -07:00
2008-04-22 15:16:31 -05:00
2008-02-07 08:42:29 -08:00
2008-04-28 08:58:46 -07:00
2008-04-28 08:58:45 -07:00
2008-04-28 08:58:47 -07:00
2008-04-21 15:41:27 -07:00
2008-04-29 08:06:00 -07:00
2008-03-19 06:54:05 -04:00
2008-02-08 09:22:30 -08:00
2008-04-25 09:23:53 -04:00
2008-04-29 08:06:01 -07:00
2008-04-25 09:23:53 -04:00
2008-04-25 09:23:53 -04:00
2008-04-21 09:50:08 +02:00
2008-02-19 10:04:00 +01:00
2008-04-29 08:06:01 -07:00
2008-04-29 08:06:01 -07:00
2008-02-14 21:17:09 -08:00
2008-02-15 13:36:30 -05:00
2008-04-23 00:04:38 -04:00
2008-02-14 21:17:09 -08:00
2008-02-05 09:44:13 -08:00
2008-04-28 08:58:33 -07:00
2008-04-29 08:06:00 -07:00
2008-04-29 08:05:59 -07:00
2008-04-25 09:23:59 -04:00
2008-04-25 09:24:05 -04:00
2008-04-19 00:29:28 -04:00
2008-04-29 08:06:00 -07:00
2008-04-19 00:29:24 -04:00
2008-02-14 21:13:33 -08:00
2008-04-21 23:11:01 -04:00
2008-04-29 08:06:00 -07:00
2008-04-24 11:46:16 -07:00
2008-04-29 08:06:01 -07:00
2008-02-05 09:44:13 -08:00
2008-04-25 15:49:46 -07:00
2008-04-15 19:35:41 -07:00
2008-03-03 10:47:13 -08:00
2008-04-19 00:29:25 -04:00
2008-04-28 08:58:33 -07:00
2008-02-14 21:13:33 -08:00
2008-04-28 08:58:23 -07:00
2008-04-22 19:54:57 -04:00
2008-04-23 00:05:09 -04:00
2008-04-23 00:05:09 -04:00
2008-04-28 08:58:32 -07:00
2008-04-28 08:58:32 -07:00
2008-04-28 08:58:33 -07:00
2008-04-22 15:17:11 -07:00
2008-04-21 22:15:06 +00:00
2008-04-23 00:04:38 -04:00
2008-04-11 08:06:44 -07:00
2008-04-10 08:24:25 +02:00
2008-02-14 21:13:33 -08:00
2008-04-29 08:06:00 -07:00
2008-04-29 08:06:01 -07:00
2008-04-19 00:29:24 -04:00
2008-04-23 00:04:04 -04:00