diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2017-01-11 16:30:08 -0500 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2017-01-30 13:14:50 -0500 |
commit | 9df1336ca42c16622f1cae5dff246a0c9c644514 (patch) | |
tree | f98be7f1e17798d3cac4c3bc86477e1065821962 /fs/nfs/nfs4proc.c | |
parent | 334f87dd11b7a0ed8f3d3b223fb5cede201e210a (diff) |
NFS: Remove unnecessary goto in nfs4_lookup_root_sec()
Once again, it's easier and cleaner just to return the error directly.
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r-- | fs/nfs/nfs4proc.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index baf968990475..6c40944cb83d 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -3416,16 +3416,11 @@ static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandl | |||
3416 | .pseudoflavor = flavor, | 3416 | .pseudoflavor = flavor, |
3417 | }; | 3417 | }; |
3418 | struct rpc_auth *auth; | 3418 | struct rpc_auth *auth; |
3419 | int ret; | ||
3420 | 3419 | ||
3421 | auth = rpcauth_create(&auth_args, server->client); | 3420 | auth = rpcauth_create(&auth_args, server->client); |
3422 | if (IS_ERR(auth)) { | 3421 | if (IS_ERR(auth)) |
3423 | ret = -EACCES; | 3422 | return -EACCES; |
3424 | goto out; | 3423 | return nfs4_lookup_root(server, fhandle, info); |
3425 | } | ||
3426 | ret = nfs4_lookup_root(server, fhandle, info); | ||
3427 | out: | ||
3428 | return ret; | ||
3429 | } | 3424 | } |
3430 | 3425 | ||
3431 | /* | 3426 | /* |