Don't bother with d_genocide in rpc_pipe
kill_litter_super() from ->kill_sb() will take care of the junk
This commit is contained in:
parent
5b7e934d88
commit
fc7bed8c80
1 changed files with 2 additions and 7 deletions
|
@ -999,19 +999,14 @@ rpc_fill_super(struct super_block *sb, void *data, int silent)
|
||||||
inode = rpc_get_inode(sb, S_IFDIR | 0755);
|
inode = rpc_get_inode(sb, S_IFDIR | 0755);
|
||||||
if (!inode)
|
if (!inode)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
root = d_alloc_root(inode);
|
sb->s_root = root = d_alloc_root(inode);
|
||||||
if (!root) {
|
if (!root) {
|
||||||
iput(inode);
|
iput(inode);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
if (rpc_populate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF, NULL))
|
if (rpc_populate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF, NULL))
|
||||||
goto out;
|
|
||||||
sb->s_root = root;
|
|
||||||
return 0;
|
|
||||||
out:
|
|
||||||
d_genocide(root);
|
|
||||||
dput(root);
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in a new issue