cramfs_lookup(): use d_splice_alias()
simpler code that way, actually Acked-by: Nicolas Pitre <nico@linaro.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
b455ecd4bb
commit
d023b3a19f
|
@ -808,10 +808,7 @@ static struct dentry *cramfs_lookup(struct inode *dir, struct dentry *dentry, un
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
mutex_unlock(&read_mutex);
|
mutex_unlock(&read_mutex);
|
||||||
if (IS_ERR(inode))
|
return d_splice_alias(inode, dentry);
|
||||||
return ERR_CAST(inode);
|
|
||||||
d_add(dentry, inode);
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cramfs_readpage(struct file *file, struct page *page)
|
static int cramfs_readpage(struct file *file, struct page *page)
|
||||||
|
|
Loading…
Reference in New Issue