diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-10-03 23:37:55 +0200 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-10-03 23:37:55 +0200 |
commit | 9ab5aa911a5b5d7c721436bce8709202b707a361 (patch) | |
tree | e24fdd1d911415bf5d15c1bf2950766c8c04543e /fs/xfs | |
parent | 73dff8be9ea89df26bfb6a0443ad912de6e7bd00 (diff) | |
download | linux-3.10-9ab5aa911a5b5d7c721436bce8709202b707a361.tar.gz linux-3.10-9ab5aa911a5b5d7c721436bce8709202b707a361.tar.bz2 linux-3.10-9ab5aa911a5b5d7c721436bce8709202b707a361.zip |
BUG_ON conversion for fs/xfs/
This patch converts two if () BUG(); construct to BUG_ON();
which occupies less space, uses unlikely and is safer when
BUG() is disabled.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/support/debug.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/xfs/support/debug.c b/fs/xfs/support/debug.c index 36fbeccdc72..c75f68361e3 100644 --- a/fs/xfs/support/debug.c +++ b/fs/xfs/support/debug.c @@ -53,8 +53,7 @@ cmn_err(register int level, char *fmt, ...) va_end(ap); spin_unlock_irqrestore(&xfs_err_lock,flags); - if (level == CE_PANIC) - BUG(); + BUG_ON(level == CE_PANIC); } void @@ -72,8 +71,7 @@ icmn_err(register int level, char *fmt, va_list ap) strcat(message, "\n"); spin_unlock_irqrestore(&xfs_err_lock,flags); printk("%s%s", err_level[level], message); - if (level == CE_PANIC) - BUG(); + BUG_ON(level == CE_PANIC); } void |