diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-06-10 18:30:11 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-07-09 12:08:43 -0400 |
commit | b390c2b55c830eb3b64633fa8d8b8837e073e458 (patch) | |
tree | e18f0041626a88447d34809f35041cd4b4425610 /net | |
parent | 8b39f2b41033754e7ba669503d27268beb1b524a (diff) |
SUNRPC: An ENOMEM error from call_encode is always fatal
The special 'ENOMEM' case that was previously flagged as non-fatal is
bogus: auth_gss always returns EAGAIN for non-fatal errors, and may in fact
return ENOMEM in the special case where xdr_buf_read_netobj runs out of
preallocated buffer space (invariably a _fatal_ error, since there is no
provision for preallocating larger buffers).
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/clnt.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 9503b4c177d2..1af4f161cda8 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -888,10 +888,6 @@ call_encode(struct rpc_task *task) | |||
888 | 888 | ||
889 | task->tk_status = rpcauth_wrap_req(task, encode, req, p, | 889 | task->tk_status = rpcauth_wrap_req(task, encode, req, p, |
890 | task->tk_msg.rpc_argp); | 890 | task->tk_msg.rpc_argp); |
891 | if (task->tk_status == -ENOMEM) { | ||
892 | /* XXX: Is this sane? */ | ||
893 | task->tk_status = -EAGAIN; | ||
894 | } | ||
895 | } | 891 | } |
896 | 892 | ||
897 | /* | 893 | /* |