1
0
Fork 0

BUG_ON() Conversion in fs/coda/

this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
hifive-unleashed-5.1
Eric Sesterhenn 2006-03-24 18:42:13 +01:00 committed by Adrian Bunk
parent 88bcd51262
commit c5d3237c24
2 changed files with 2 additions and 3 deletions

View File

@ -51,7 +51,7 @@ void coda_cache_clear_all(struct super_block *sb)
struct coda_sb_info *sbi;
sbi = coda_sbp(sb);
if (!sbi) BUG();
BUG_ON(!sbi);
atomic_inc(&permission_epoch);
}

View File

@ -120,8 +120,7 @@ void coda_replace_fid(struct inode *inode, struct CodaFid *oldfid,
cii = ITOC(inode);
if (!coda_fideq(&cii->c_fid, oldfid))
BUG();
BUG_ON(!coda_fideq(&cii->c_fid, oldfid));
/* replace fid and rehash inode */
/* XXX we probably need to hold some lock here! */