The patch titled
     SUNPRC: fix printk format warning
has been removed from the -mm tree.  Its filename was
     sunprc-fix-printk-format-warning.patch

This patch was dropped because it was merged into mainline or a subsystem tree

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: SUNPRC: fix printk format warning
From: Roland Dreier <[EMAIL PROTECTED]>

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: Roland Dreier <[EMAIL PROTECTED]>
Cc: "J. Bruce Fields" <[EMAIL PROTECTED]>
Cc: "David S. Miller" <[EMAIL PROTECTED]>
Cc: Trond Myklebust <[EMAIL PROTECTED]>
Cc: Neil Brown <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 net/sunrpc/xprtrdma/svc_rdma_sendto.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
net/sunrpc/xprtrdma/svc_rdma_sendto.c~sunprc-fix-printk-format-warning 
net/sunrpc/xprtrdma/svc_rdma_sendto.c
--- a/net/sunrpc/xprtrdma/svc_rdma_sendto.c~sunprc-fix-printk-format-warning
+++ a/net/sunrpc/xprtrdma/svc_rdma_sendto.c
@@ -159,7 +159,7 @@ static int send_write(struct svcxprt_rdm
        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;
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
input-i8042-fix-warning-on-non-x86-builds.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to