* [PATCH] svcrpc: fix some printks
@ 2012-12-17 15:37 J. Bruce Fields
0 siblings, 0 replies; only message in thread
From: J. Bruce Fields @ 2012-12-17 15:37 UTC (permalink / raw)
To: linux-nfs
From: "J. Bruce Fields" <bfields@redhat.com>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
---
net/sunrpc/svcsock.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Hopefully I got this right this time. Queueing up for 3.8.--b.
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c
index 38ec968..b250e27 100644
--- a/net/sunrpc/svcsock.c
+++ b/net/sunrpc/svcsock.c
@@ -952,8 +952,8 @@ static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
dprintk("svc: TCP record, %d bytes\n", svc_sock_reclen(svsk));
if (svc_sock_reclen(svsk) + svsk->sk_datalen >
serv->sv_max_mesg) {
- net_notice_ratelimited("RPC: fragment too large: 0x%08lx\n",
- (unsigned long)svsk->sk_reclen);
+ net_notice_ratelimited("RPC: fragment too large: 0x%08x\n",
+ svc_sock_reclen(svsk));
goto err_delete;
}
}
@@ -1080,8 +1080,8 @@ static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
if (len == want)
svc_tcp_fragment_received(svsk);
else
- dprintk("svc: incomplete TCP record (%ld of %d)\n",
- svsk->sk_tcplen - sizeof(rpc_fraghdr),
+ dprintk("svc: incomplete TCP record (%d of %d)\n",
+ svsk->sk_tcplen - (int)sizeof(rpc_fraghdr),
svc_sock_reclen(svsk));
goto err_noclose;
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-12-17 15:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-17 15:37 [PATCH] svcrpc: fix some printks J. Bruce Fields
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).