diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2016-07-15 17:05:52 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2016-07-15 17:05:52 -0400 |
commit | e3406081c6ac154ed48fbb07e6bb8daacc48c7c8 (patch) | |
tree | 31ac04d7813866463fccf2ec9ec4dea9c88edc75 /net/sunrpc/svc.c | |
parent | 92d21ac74a9e3c09b0b01c764e530657e4c85c49 (diff) | |
parent | a4e187d83d88eeaba6252aac0a2ffe5eaa73a818 (diff) |
Merge tag 'nfs-rdma-4.8-1' of git://git.linux-nfs.org/projects/anna/nfs-rdma
NFS: NFSoRDMA Client Side Changes
New Features:
- Add kerberos support
Bugfixes and cleanups:
- Remove ALLPHYSICAL memory registration mode
- Fix FMR disconnect recovery
- Reduce memory usage
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r-- | net/sunrpc/svc.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index cc9852897395..c5b0cb4f4056 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
@@ -1188,11 +1188,17 @@ svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv) | |||
1188 | *statp = procp->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp); | 1188 | *statp = procp->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp); |
1189 | 1189 | ||
1190 | /* Encode reply */ | 1190 | /* Encode reply */ |
1191 | if (test_bit(RQ_DROPME, &rqstp->rq_flags)) { | 1191 | if (*statp == rpc_drop_reply || |
1192 | test_bit(RQ_DROPME, &rqstp->rq_flags)) { | ||
1192 | if (procp->pc_release) | 1193 | if (procp->pc_release) |
1193 | procp->pc_release(rqstp, NULL, rqstp->rq_resp); | 1194 | procp->pc_release(rqstp, NULL, rqstp->rq_resp); |
1194 | goto dropit; | 1195 | goto dropit; |
1195 | } | 1196 | } |
1197 | if (*statp == rpc_autherr_badcred) { | ||
1198 | if (procp->pc_release) | ||
1199 | procp->pc_release(rqstp, NULL, rqstp->rq_resp); | ||
1200 | goto err_bad_auth; | ||
1201 | } | ||
1196 | if (*statp == rpc_success && | 1202 | if (*statp == rpc_success && |
1197 | (xdr = procp->pc_encode) && | 1203 | (xdr = procp->pc_encode) && |
1198 | !xdr(rqstp, resv->iov_base+resv->iov_len, rqstp->rq_resp)) { | 1204 | !xdr(rqstp, resv->iov_base+resv->iov_len, rqstp->rq_resp)) { |