Commit 5a738b5d authored by Jason Gunthorpe's avatar Jason Gunthorpe

RDMA/drivers: Use dev_err/dbg/etc instead of pr_* + ibdev->name

Kernel convention is that a driver for a subsystem will print using
dev_* on the subsystem's struct device, or with dev_* on the physical
device. Drivers should rarely use a pr_* function.
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 43c7c851
...@@ -50,17 +50,17 @@ ...@@ -50,17 +50,17 @@
#include <rdma/uverbs_ioctl.h> #include <rdma/uverbs_ioctl.h>
#include <rdma/mlx5_user_ioctl_cmds.h> #include <rdma/mlx5_user_ioctl_cmds.h>
#define mlx5_ib_dbg(dev, format, arg...) \ #define mlx5_ib_dbg(_dev, format, arg...) \
pr_debug("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \ dev_dbg(&(_dev)->ib_dev.dev, "%s:%d:(pid %d): " format, __func__, \
__LINE__, current->pid, ##arg) __LINE__, current->pid, ##arg)
#define mlx5_ib_err(dev, format, arg...) \ #define mlx5_ib_err(_dev, format, arg...) \
pr_err("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \ dev_err(&(_dev)->ib_dev.dev, "%s:%d:(pid %d): " format, __func__, \
__LINE__, current->pid, ##arg) __LINE__, current->pid, ##arg)
#define mlx5_ib_warn(dev, format, arg...) \ #define mlx5_ib_warn(_dev, format, arg...) \
pr_warn("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \ dev_warn(&(_dev)->ib_dev.dev, "%s:%d:(pid %d): " format, __func__, \
__LINE__, current->pid, ##arg) __LINE__, current->pid, ##arg)
#define field_avail(type, fld, sz) (offsetof(type, fld) + \ #define field_avail(type, fld, sz) (offsetof(type, fld) + \
sizeof(((type *)0)->fld) <= (sz)) sizeof(((type *)0)->fld) <= (sz))
......
...@@ -2826,8 +2826,9 @@ static int modify_raw_packet_qp_rq( ...@@ -2826,8 +2826,9 @@ static int modify_raw_packet_qp_rq(
MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID); MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID);
MLX5_SET(rqc, rqc, counter_set_id, raw_qp_param->rq_q_ctr_id); MLX5_SET(rqc, rqc, counter_set_id, raw_qp_param->rq_q_ctr_id);
} else } else
pr_info_once("%s: RAW PACKET QP counters are not supported on current FW\n", dev_info_once(
dev->ib_dev.name); &dev->ib_dev.dev,
"RAW PACKET QP counters are not supported on current FW\n");
} }
err = mlx5_core_modify_rq(dev->mdev, rq->base.mqp.qpn, in, inlen); err = mlx5_core_modify_rq(dev->mdev, rq->base.mqp.qpn, in, inlen);
...@@ -5798,8 +5799,9 @@ int mlx5_ib_modify_wq(struct ib_wq *wq, struct ib_wq_attr *wq_attr, ...@@ -5798,8 +5799,9 @@ int mlx5_ib_modify_wq(struct ib_wq *wq, struct ib_wq_attr *wq_attr,
MLX5_SET(rqc, rqc, counter_set_id, MLX5_SET(rqc, rqc, counter_set_id,
dev->port->cnts.set_id); dev->port->cnts.set_id);
} else } else
pr_info_once("%s: Receive WQ counters are not supported on current FW\n", dev_info_once(
dev->ib_dev.name); &dev->ib_dev.dev,
"Receive WQ counters are not supported on current FW\n");
} }
err = mlx5_core_modify_rq(dev->mdev, rwq->core_qp.qpn, in, inlen); err = mlx5_core_modify_rq(dev->mdev, rwq->core_qp.qpn, in, inlen);
......
...@@ -58,8 +58,9 @@ static int mthca_update_rate(struct mthca_dev *dev, u8 port_num) ...@@ -58,8 +58,9 @@ static int mthca_update_rate(struct mthca_dev *dev, u8 port_num)
ret = ib_query_port(&dev->ib_dev, port_num, tprops); ret = ib_query_port(&dev->ib_dev, port_num, tprops);
if (ret) { if (ret) {
printk(KERN_WARNING "ib_query_port failed (%d) for %s port %d\n", dev_warn(&dev->ib_dev.dev,
ret, dev->ib_dev.name, port_num); "ib_query_port failed (%d) forport %d\n", ret,
port_num);
goto out; goto out;
} }
......
...@@ -792,7 +792,7 @@ static void ocrdma_dispatch_ibevent(struct ocrdma_dev *dev, ...@@ -792,7 +792,7 @@ static void ocrdma_dispatch_ibevent(struct ocrdma_dev *dev,
qp->srq->ibsrq. qp->srq->ibsrq.
srq_context); srq_context);
} else if (dev_event) { } else if (dev_event) {
pr_err("%s: Fatal event received\n", dev->ibdev.name); dev_err(&dev->ibdev.dev, "Fatal event received\n");
ib_dispatch_event(&ib_evt); ib_dispatch_event(&ib_evt);
} }
......
...@@ -615,7 +615,7 @@ void rxe_port_up(struct rxe_dev *rxe) ...@@ -615,7 +615,7 @@ void rxe_port_up(struct rxe_dev *rxe)
port->attr.phys_state = IB_PHYS_STATE_LINK_UP; port->attr.phys_state = IB_PHYS_STATE_LINK_UP;
rxe_port_event(rxe, IB_EVENT_PORT_ACTIVE); rxe_port_event(rxe, IB_EVENT_PORT_ACTIVE);
pr_info("set %s active\n", rxe->ib_dev.name); dev_info(&rxe->ib_dev.dev, "set active\n");
} }
/* Caller must hold net_info_lock */ /* Caller must hold net_info_lock */
...@@ -628,7 +628,7 @@ void rxe_port_down(struct rxe_dev *rxe) ...@@ -628,7 +628,7 @@ void rxe_port_down(struct rxe_dev *rxe)
port->attr.phys_state = IB_PHYS_STATE_LINK_DOWN; port->attr.phys_state = IB_PHYS_STATE_LINK_DOWN;
rxe_port_event(rxe, IB_EVENT_PORT_ERR); rxe_port_event(rxe, IB_EVENT_PORT_ERR);
pr_info("set %s down\n", rxe->ib_dev.name); dev_info(&rxe->ib_dev.dev, "set down\n");
} }
static int rxe_notify(struct notifier_block *not_blk, static int rxe_notify(struct notifier_block *not_blk,
......
...@@ -105,7 +105,7 @@ static int rxe_param_set_add(const char *val, const struct kernel_param *kp) ...@@ -105,7 +105,7 @@ static int rxe_param_set_add(const char *val, const struct kernel_param *kp)
} }
rxe_set_port_state(ndev); rxe_set_port_state(ndev);
pr_info("added %s to %s\n", rxe->ib_dev.name, intf); dev_info(&rxe->ib_dev.dev, "added %s\n", intf);
err: err:
if (ndev) if (ndev)
dev_put(ndev); dev_put(ndev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment