Commit 2d8a10cd authored by Al Viro's avatar Al Viro

[PATCH] fix efs_lookup()

it needs to use d_splice_alias(), not d_add()
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent cc996099
...@@ -74,8 +74,7 @@ struct dentry *efs_lookup(struct inode *dir, struct dentry *dentry, struct namei ...@@ -74,8 +74,7 @@ struct dentry *efs_lookup(struct inode *dir, struct dentry *dentry, struct namei
} }
unlock_kernel(); unlock_kernel();
d_add(dentry, inode); return d_splice_alias(inode, dentry);
return NULL;
} }
static struct inode *efs_nfs_get_inode(struct super_block *sb, u64 ino, static struct inode *efs_nfs_get_inode(struct super_block *sb, u64 ino,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment