aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/svc.c
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2012-12-10 18:01:37 -0500
committerJ. Bruce Fields <bfields@redhat.com>2012-12-17 22:00:16 -0500
commitafc59400d6c65bad66d4ad0b2daf879cbff8e23e (patch)
treecc4c1c4dcf01106259d4f18d637cb2d1115ef980 /net/sunrpc/svc.c
parent79f77bf9a4e3dd5ead006b8f17e7c4ff07d8374e (diff)
nfsd4: cleanup: replace rq_resused count by rq_next_page pointer
It may be a matter of personal taste, but I find this makes the code clearer. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r--net/sunrpc/svc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
index 529400d59755..c6abf1a6ba95 100644
--- a/net/sunrpc/svc.c
+++ b/net/sunrpc/svc.c
@@ -1297,7 +1297,7 @@ svc_process(struct svc_rqst *rqstp)
1297 * Setup response xdr_buf. 1297 * Setup response xdr_buf.
1298 * Initially it has just one page 1298 * Initially it has just one page
1299 */ 1299 */
1300 rqstp->rq_resused = 1; 1300 rqstp->rq_next_page = &rqstp->rq_respages[1];
1301 resv->iov_base = page_address(rqstp->rq_respages[0]); 1301 resv->iov_base = page_address(rqstp->rq_respages[0]);
1302 resv->iov_len = 0; 1302 resv->iov_len = 0;
1303 rqstp->rq_res.pages = rqstp->rq_respages + 1; 1303 rqstp->rq_res.pages = rqstp->rq_respages + 1;