aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/clnt.c
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2022-07-22 15:08:04 -0400
committerTrond Myklebust <trond.myklebust@hammerspace.com>2022-07-23 15:34:34 -0400
commit0701214cd6e66585a999b132eb72ae0489beb724 (patch)
tree473a2416841285897d7cad95b8acc19ef788eb40 /net/sunrpc/clnt.c
parent69d966510d9f5de81588b37d23a9ee8ccc477b23 (diff)
downloadlinux-0701214cd6e66585a999b132eb72ae0489beb724.tar.gz
SUNRPC: Fail faster on bad verifier
A bad verifier is not a garbage argument, it's an authentication failure. Retrying it doesn't make the problem go away, and delays upper layer recovery steps. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Reviewed-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r--net/sunrpc/clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index b6781ada3aa8d7..a97d4e06cae381 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -2650,7 +2650,7 @@ out_unparsable:
out_verifier:
trace_rpc_bad_verifier(task);
- goto out_garbage;
+ goto out_err;
out_msg_denied:
error = -EACCES;