提交 57bbe3d7 编写于 作者: A Andy Adamson 提交者: Trond Myklebust

NFS check the return of nfs4_negotiate_security in nfs4_submount

Signed-off-by: NAndy Adamson <andros@netapp.com>
Tested-By: NSteve Dickson <steved@redhat.com>
Signed-off-by: NTrond Myklebust <trond.myklebust@primarydata.com>
上级 6edf9609
......@@ -399,8 +399,11 @@ struct vfsmount *nfs4_submount(struct nfs_server *server, struct dentry *dentry,
flavor = client->cl_auth->au_flavor;
else {
rpc_authflavor_t new = nfs4_negotiate_security(dir, name);
if ((int)new >= 0)
flavor = new;
if ((int)new < 0) {
mnt = ERR_PTR((int)new);
goto out;
}
flavor = new;
}
mnt = nfs_do_submount(dentry, fh, fattr, flavor);
out:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册