]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
net/9p/trans_virtio.c: Use BUG_ON
authorJulia Lawall <julia@diku.dk>
Mon, 18 Feb 2008 02:42:53 +0000 (18:42 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 18 Feb 2008 02:42:53 +0000 (18:42 -0800)
commitd6584f3a08055688b2344eb26379fb2f3147ce91
treef934b427af15b1ea532d333427c905207be7f129
parent163e3cb7daa8c3a6dde6a13a3d09a198930c6822
net/9p/trans_virtio.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>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/9p/trans_virtio.c