|
@@ -1005,6 +1005,7 @@ svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv)
|
|
|
rqstp->rq_splice_ok = 1;
|
|
|
/* Will be turned off only when NFSv4 Sessions are used */
|
|
|
rqstp->rq_usedeferral = 1;
|
|
|
+ rqstp->rq_dropme = false;
|
|
|
|
|
|
/* Setup reply header */
|
|
|
rqstp->rq_xprt->xpt_ops->xpo_prep_reply_hdr(rqstp);
|
|
@@ -1106,7 +1107,7 @@ svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv)
|
|
|
*statp = procp->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
|
|
|
|
|
|
/* Encode reply */
|
|
|
- if (*statp == rpc_drop_reply) {
|
|
|
+ if (rqstp->rq_dropme) {
|
|
|
if (procp->pc_release)
|
|
|
procp->pc_release(rqstp, NULL, rqstp->rq_resp);
|
|
|
goto dropit;
|