projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e827f92
)
BUG_ON() Conversion in fs/dcache.c
author
Eric Sesterhenn
<snakebyte@gmx.de>
Sun, 26 Mar 2006 16:25:39 +0000
(18:25 +0200)
committer
Adrian Bunk
<bunk@stusta.de>
Sun, 26 Mar 2006 16:25:39 +0000
(18:25 +0200)
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>
fs/dcache.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/dcache.c
b/fs/dcache.c
index 939584648504e6552be95e13a52b46e0d27592ea..0c78f05819df80020991540a5ee0b8e01dea9995 100644
(file)
--- a/
fs/dcache.c
+++ b/
fs/dcache.c
@@
-798,7
+798,7
@@
struct dentry *d_alloc_name(struct dentry *parent, const char *name)
void d_instantiate(struct dentry *entry, struct inode * inode)
{
-
if (!list_empty(&entry->d_alias)) BUG(
);
+
BUG_ON(!list_empty(&entry->d_alias)
);
spin_lock(&dcache_lock);
if (inode)
list_add(&entry->d_alias, &inode->i_dentry);