diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-03-26 11:25:39 -0500 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-03-26 11:25:39 -0500 |
commit | 28133c7b2b9bbdf8a8765a319e818c1652f38c1f (patch) | |
tree | 35a5e82cbd970a90f45933aa2d4f20e421537b66 /fs/dcache.c | |
parent | e827f92355e1eeec2d227d3bd3350d04042a011e (diff) |
BUG_ON() Conversion in fs/dcache.c
this changes if() BUG(); constructs to BUG_ON() which is
cleaner and can better optimized away
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index 939584648504..0c78f05819df 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -798,7 +798,7 @@ struct dentry *d_alloc_name(struct dentry *parent, const char *name) | |||
798 | 798 | ||
799 | void d_instantiate(struct dentry *entry, struct inode * inode) | 799 | void d_instantiate(struct dentry *entry, struct inode * inode) |
800 | { | 800 | { |
801 | if (!list_empty(&entry->d_alias)) BUG(); | 801 | BUG_ON(!list_empty(&entry->d_alias)); |
802 | spin_lock(&dcache_lock); | 802 | spin_lock(&dcache_lock); |
803 | if (inode) | 803 | if (inode) |
804 | list_add(&entry->d_alias, &inode->i_dentry); | 804 | list_add(&entry->d_alias, &inode->i_dentry); |