Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb50c801 authored by Roland Dreier's avatar Roland Dreier Committed by J. Bruce Fields
Browse files

SUNPRC: Fix printk format warning



net/sunrpc/xprtrdma/svc_rdma_sendto.c:160: warning: format '%llx'
expects type 'long long unsigned int', but argument 3 has type 'u64'

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
parent fbb7878c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -159,7 +159,8 @@ static int send_write(struct svcxprt_rdma *xprt, struct svc_rqst *rqstp,
	BUG_ON(sge_count >= 32);
	dprintk("svcrdma: RDMA_WRITE rmr=%x, to=%llx, xdr_off=%d, "
		"write_len=%d, xdr_sge=%p, sge_count=%d\n",
		rmr, to, xdr_off, write_len, xdr_sge, sge_count);
		rmr, (unsigned long long)to, xdr_off,
		write_len, xdr_sge, sge_count);

	ctxt = svc_rdma_get_context(xprt);
	ctxt->count = 0;