diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-10-26 13:30:49 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-30 02:05:42 -0500 |
commit | d4b37ff73540ab90bee57b882a10b21e2f97939f (patch) | |
tree | d14a9bec8726721015ea4e50b2c479730fc75725 /net | |
parent | 2a428b2b8fe2c270a5889086ebe3ab914e3ea7d8 (diff) |
SUNRPC: Fix an unnecessary implicit type cast in rpcrdma_count_chunks()
Nit: rl_nchunks is an unsigned integer, so pass it into
rpcrdma_count_chunks() via an unsigned integer argument. This eliminates
a harmless mixed sign comparison in rpcrdma_count_chunks()
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Cc: Thomas Talpey <Thomas.Talpey@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/xprtrdma/rpc_rdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprtrdma/rpc_rdma.c b/net/sunrpc/xprtrdma/rpc_rdma.c index 72c8eab30d9b..e55427f73dfe 100644 --- a/net/sunrpc/xprtrdma/rpc_rdma.c +++ b/net/sunrpc/xprtrdma/rpc_rdma.c | |||
@@ -552,7 +552,7 @@ rpcrdma_marshal_req(struct rpc_rqst *rqst) | |||
552 | * RDMA'd by server. See map at rpcrdma_create_chunks()! :-) | 552 | * RDMA'd by server. See map at rpcrdma_create_chunks()! :-) |
553 | */ | 553 | */ |
554 | static int | 554 | static int |
555 | rpcrdma_count_chunks(struct rpcrdma_rep *rep, int max, int wrchunk, __be32 **iptrp) | 555 | rpcrdma_count_chunks(struct rpcrdma_rep *rep, unsigned int max, int wrchunk, __be32 **iptrp) |
556 | { | 556 | { |
557 | unsigned int i, total_len; | 557 | unsigned int i, total_len; |
558 | struct rpcrdma_write_chunk *cur_wchunk; | 558 | struct rpcrdma_write_chunk *cur_wchunk; |