aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2008-04-14 12:27:45 -0400
committerJ. Bruce Fields <bfields@citi.umich.edu>2008-04-23 16:13:43 -0400
commit50c8bb13eaaf345caf2e7966667ba1d3e4d68af2 (patch)
treeb3bfef60963218d9c5ba4ece05561fcde20e7a77 /net/sunrpc
parentc0401ea008fb7c785a93428752d69dccafb127ec (diff)
SUNRPC: Use unsigned index when looping over arrays
Clean up: Suppress a harmless compiler warning in the RPC server related to array indices. ARRAY_SIZE() returns a size_t, so use unsigned type for a loop index when looping over arrays. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/svc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
index e7b716c76366..bf46186ddf9f 100644
--- a/net/sunrpc/svc.c
+++ b/net/sunrpc/svc.c
@@ -534,8 +534,9 @@ svc_init_buffer(struct svc_rqst *rqstp, unsigned int size)
534static void 534static void
535svc_release_buffer(struct svc_rqst *rqstp) 535svc_release_buffer(struct svc_rqst *rqstp)
536{ 536{
537 int i; 537 unsigned int i;
538 for (i=0; i<ARRAY_SIZE(rqstp->rq_pages); i++) 538
539 for (i = 0; i < ARRAY_SIZE(rqstp->rq_pages); i++)
539 if (rqstp->rq_pages[i]) 540 if (rqstp->rq_pages[i])
540 put_page(rqstp->rq_pages[i]); 541 put_page(rqstp->rq_pages[i]);
541} 542}