aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/cxgb4
diff options
context:
space:
mode:
authorLeon Romanovsky <leonro@mellanox.com>2019-05-20 09:54:32 +0300
committerJason Gunthorpe <jgg@mellanox.com>2019-05-27 14:32:17 -0300
commitcae626b97851afc2219e7607183a9a23cbba3bef (patch)
tree107550b4a25e6706db3bb7ee07e41f4ba54a9073 /drivers/infiniband/hw/cxgb4
parentRDMA/cxgb4: Use sizeof() notation (diff)
downloadlinux-dev-cae626b97851afc2219e7607183a9a23cbba3bef.tar.xz
linux-dev-cae626b97851afc2219e7607183a9a23cbba3bef.zip
RDMA/cxgb4: Don't expose DMA addresses
Change unconditional print of DMA address to be printed with special printk format type specifier. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb4')
-rw-r--r--drivers/infiniband/hw/cxgb4/cq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cq.c b/drivers/infiniband/hw/cxgb4/cq.c
index 2c0587d8630f..6557e7c5af66 100644
--- a/drivers/infiniband/hw/cxgb4/cq.c
+++ b/drivers/infiniband/hw/cxgb4/cq.c
@@ -1135,9 +1135,9 @@ struct ib_cq *c4iw_create_cq(struct ib_device *ibdev,
mm2->len = PAGE_SIZE;
insert_mmap(ucontext, mm2);
}
- pr_debug("cqid 0x%0x chp %p size %u memsize %zu, dma_addr 0x%0llx\n",
- chp->cq.cqid, chp, chp->cq.size,
- chp->cq.memsize, (unsigned long long)chp->cq.dma_addr);
+ pr_debug("cqid 0x%0x chp %p size %u memsize %zu, dma_addr %pad\n",
+ chp->cq.cqid, chp, chp->cq.size, chp->cq.memsize,
+ &chp->cq.dma_addr);
return &chp->ibcq;
err_free_mm2:
kfree(mm2);