BUG_ON() Conversion in fs/hfs/
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>
This commit is contained in:
committed by
Adrian Bunk
parent
28133c7b2b
commit
4d4ef9abe3
@@ -36,8 +36,7 @@ struct hfs_btree *hfs_btree_open(struct super_block *sb, u32 id, btree_keycmp ke
|
||||
tree->inode = iget_locked(sb, id);
|
||||
if (!tree->inode)
|
||||
goto free_tree;
|
||||
if (!(tree->inode->i_state & I_NEW))
|
||||
BUG();
|
||||
BUG_ON(!(tree->inode->i_state & I_NEW));
|
||||
{
|
||||
struct hfs_mdb *mdb = HFS_SB(sb)->mdb;
|
||||
HFS_I(tree->inode)->flags = 0;
|
||||
|
Reference in New Issue
Block a user