summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/svc_xprt.c
diff options
context:
space:
mode:
authorChuck Lever2018-03-27 16:49:22 +0200
committerJ. Bruce Fields2018-04-03 21:08:09 +0200
commit63a1b1569372860fdef9e25edfc2320766b2f4c2 (patch)
treeab96be4544d795e391522e52484f1617c1935f7a /net/sunrpc/svc_xprt.c
parentnfsd: use correct enum type in decode_cb_op_status (diff)
downloadkernel-qcow2-linux-63a1b1569372860fdef9e25edfc2320766b2f4c2.tar.gz
kernel-qcow2-linux-63a1b1569372860fdef9e25edfc2320766b2f4c2.tar.xz
kernel-qcow2-linux-63a1b1569372860fdef9e25edfc2320766b2f4c2.zip
sunrpc: Remove unneeded pointer dereference
Clean up: Noticed during code inspection that there is already a local automatic variable "xprt" so dereferencing rqst->rq_xprt again is unnecessary. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svc_xprt.c')
-rw-r--r--net/sunrpc/svc_xprt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
index f9307bd6644b..6dca0f513c95 100644
--- a/net/sunrpc/svc_xprt.c
+++ b/net/sunrpc/svc_xprt.c
@@ -492,7 +492,7 @@ static void svc_xprt_release(struct svc_rqst *rqstp)
{
struct svc_xprt *xprt = rqstp->rq_xprt;
- rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
+ xprt->xpt_ops->xpo_release_rqst(rqstp);
kfree(rqstp->rq_deferred);
rqstp->rq_deferred = NULL;
@@ -889,7 +889,7 @@ int svc_send(struct svc_rqst *rqstp)
goto out;
/* release the receive skb before sending the reply */
- rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
+ xprt->xpt_ops->xpo_release_rqst(rqstp);
/* calculate over-all length */
xb = &rqstp->rq_res;