summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Whitehouse2006-02-27 17:00:37 +0100
committerSteven Whitehouse2006-02-27 17:00:37 +0100
commit3a8fe9be6c9794e55ac2253eab91d42b28a9dab6 (patch)
tree6c8f3e6a8616ddb513c3abb1c8cf7993d699afd7
parent[GFS2] Audit printk and kmalloc (diff)
downloadkernel-qcow2-linux-3a8fe9be6c9794e55ac2253eab91d42b28a9dab6.tar.gz
kernel-qcow2-linux-3a8fe9be6c9794e55ac2253eab91d42b28a9dab6.tar.xz
kernel-qcow2-linux-3a8fe9be6c9794e55ac2253eab91d42b28a9dab6.zip
[GFS2] Use BUG_ON() rather then if (...) BUG();
This issue was raised by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
-rw-r--r--fs/gfs2/lm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/lm.c b/fs/gfs2/lm.c
index cc7442261b2e..f86f11f39738 100644
--- a/fs/gfs2/lm.c
+++ b/fs/gfs2/lm.c
@@ -101,8 +101,8 @@ int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...)
va_end(args);
fs_err(sdp, "about to withdraw from the cluster\n");
- if (sdp->sd_args.ar_debug)
- BUG();
+ BUG_ON(sdp->sd_args.ar_debug);
+
fs_err(sdp, "waiting for outstanding I/O\n");