Commit 6f36230e authored by Al Viro's avatar Al Viro

hostfs: use d_splice_alias() calling conventions to simplify failure exits

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 5e7582f6
...@@ -637,12 +637,8 @@ static struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry, ...@@ -637,12 +637,8 @@ static struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry,
inode = hostfs_iget(ino->i_sb, name); inode = hostfs_iget(ino->i_sb, name);
__putname(name); __putname(name);
if (IS_ERR(inode)) { if (inode == ERR_PTR(-ENOENT))
if (PTR_ERR(inode) == -ENOENT) inode = NULL;
inode = NULL;
else
return ERR_CAST(inode);
}
return d_splice_alias(inode, dentry); return d_splice_alias(inode, dentry);
} }
......
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