projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b4b299
)
deuglify squashfs_lookup()
author
Al Viro
<viro@zeniv.linux.org.uk>
Sat, 9 Jul 2011 00:57:47 +0000
(20:57 -0400)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 20 Jul 2011 05:44:24 +0000
(
01:44
-0400)
d_splice_alias(NULL, dentry) is equivalent to d_add(dentry, NULL), NULL
so no need for that if (inode) ... in there (or ERR_PTR(0), for that
matter)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/squashfs/namei.c
patch
|
blob
|
history
diff --git
a/fs/squashfs/namei.c
b/fs/squashfs/namei.c
index
4bc63ac
..
51b3695
100644
(file)
--- a/
fs/squashfs/namei.c
+++ b/
fs/squashfs/namei.c
@@
-232,10
+232,7
@@
static struct dentry *squashfs_lookup(struct inode *dir, struct dentry *dentry,
exit_lookup:
kfree(dire);
- if (inode)
- return d_splice_alias(inode, dentry);
- d_add(dentry, inode);
- return ERR_PTR(0);
+ return d_splice_alias(inode, dentry);
data_error:
err = -EIO;