Skip to content

Commit

Permalink
net/sunrpc/xprtrdma/verbs.c printk warning fix
Browse files Browse the repository at this point in the history
sparc64:

net/sunrpc/xprtrdma/verbs.c:1264: warning: long long unsigned int format, u64 arg (arg 3)
net/sunrpc/xprtrdma/verbs.c:1264: warning: long long unsigned int format, u64 arg (arg 4)

Cc: Trond Myklebust <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: "J. Bruce Fields" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
akpm00 authored and Linus Torvalds committed Oct 16, 2007
1 parent 102a1a2 commit a56daeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/sunrpc/xprtrdma/verbs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,8 @@ rpcrdma_register_internal(struct rpcrdma_ia *ia, void *va, int len,

dprintk("RPC: %s: phys convert: 0x%llx "
"registered 0x%llx length %d\n",
__func__, ipb.addr, iov->addr, len);
__func__, (unsigned long long)ipb.addr,
(unsigned long long)iov->addr, len);

if (IS_ERR(mr)) {
*mrp = NULL;
Expand Down

0 comments on commit a56daeb

Please sign in to comment.