don't bother with ->d_inode->i_sb - it's always equal to ->d_sb
... and neither can ever be NULL Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -132,7 +132,7 @@ static struct dentry *ufs_get_parent(struct dentry *child)
|
||||
ino = ufs_inode_by_name(d_inode(child), &dot_dot);
|
||||
if (!ino)
|
||||
return ERR_PTR(-ENOENT);
|
||||
return d_obtain_alias(ufs_iget(d_inode(child)->i_sb, ino));
|
||||
return d_obtain_alias(ufs_iget(child->d_sb, ino));
|
||||
}
|
||||
|
||||
static const struct export_operations ufs_export_ops = {
|
||||
|
Reference in New Issue
Block a user