aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2015-01-13 11:02:37 -0500
committerJ. Bruce Fields <bfields@redhat.com>2015-01-15 15:01:43 -0500
commit597561bf6a666f532fbd6216624ed47916762f8e (patch)
tree9d3f04504d548ee1901f95da52a98e194b98bbef /net
parent917937025a955e239e5cdcc62b6ca9a5ef9e5e48 (diff)
svcrdma: Clean up dprintk
Nit: Fix inconsistent white space in dprintk messages. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Reviewed-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/xprtrdma/svc_rdma_recvfrom.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
index e0110270d650..2c67de032009 100644
--- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
+++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
@@ -501,8 +501,8 @@ static int rdma_read_complete(struct svc_rqst *rqstp,
501 ret = rqstp->rq_arg.head[0].iov_len 501 ret = rqstp->rq_arg.head[0].iov_len
502 + rqstp->rq_arg.page_len 502 + rqstp->rq_arg.page_len
503 + rqstp->rq_arg.tail[0].iov_len; 503 + rqstp->rq_arg.tail[0].iov_len;
504 dprintk("svcrdma: deferred read ret=%d, rq_arg.len =%d, " 504 dprintk("svcrdma: deferred read ret=%d, rq_arg.len=%u, "
505 "rq_arg.head[0].iov_base=%p, rq_arg.head[0].iov_len = %zd\n", 505 "rq_arg.head[0].iov_base=%p, rq_arg.head[0].iov_len=%zu\n",
506 ret, rqstp->rq_arg.len, rqstp->rq_arg.head[0].iov_base, 506 ret, rqstp->rq_arg.len, rqstp->rq_arg.head[0].iov_base,
507 rqstp->rq_arg.head[0].iov_len); 507 rqstp->rq_arg.head[0].iov_len);
508 508
@@ -591,8 +591,8 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
591 + rqstp->rq_arg.tail[0].iov_len; 591 + rqstp->rq_arg.tail[0].iov_len;
592 svc_rdma_put_context(ctxt, 0); 592 svc_rdma_put_context(ctxt, 0);
593 out: 593 out:
594 dprintk("svcrdma: ret = %d, rq_arg.len =%d, " 594 dprintk("svcrdma: ret=%d, rq_arg.len=%u, "
595 "rq_arg.head[0].iov_base=%p, rq_arg.head[0].iov_len = %zd\n", 595 "rq_arg.head[0].iov_base=%p, rq_arg.head[0].iov_len=%zd\n",
596 ret, rqstp->rq_arg.len, 596 ret, rqstp->rq_arg.len,
597 rqstp->rq_arg.head[0].iov_base, 597 rqstp->rq_arg.head[0].iov_base,
598 rqstp->rq_arg.head[0].iov_len); 598 rqstp->rq_arg.head[0].iov_len);