diff options
Diffstat (limited to 'drivers/infiniband/hw/ipath/ipath_qp.c')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_qp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_qp.c b/drivers/infiniband/hw/ipath/ipath_qp.c index 9228d59b59d4..b86858e70f2a 100644 --- a/drivers/infiniband/hw/ipath/ipath_qp.c +++ b/drivers/infiniband/hw/ipath/ipath_qp.c | |||
@@ -274,7 +274,7 @@ void ipath_free_all_qps(struct ipath_qp_table *qpt) | |||
274 | free_qpn(qpt, qp->ibqp.qp_num); | 274 | free_qpn(qpt, qp->ibqp.qp_num); |
275 | if (!atomic_dec_and_test(&qp->refcount) || | 275 | if (!atomic_dec_and_test(&qp->refcount) || |
276 | !ipath_destroy_qp(&qp->ibqp)) | 276 | !ipath_destroy_qp(&qp->ibqp)) |
277 | _VERBS_INFO("QP memory leak!\n"); | 277 | ipath_dbg(KERN_INFO "QP memory leak!\n"); |
278 | qp = nqp; | 278 | qp = nqp; |
279 | } | 279 | } |
280 | } | 280 | } |
@@ -362,8 +362,8 @@ void ipath_error_qp(struct ipath_qp *qp) | |||
362 | struct ipath_ibdev *dev = to_idev(qp->ibqp.device); | 362 | struct ipath_ibdev *dev = to_idev(qp->ibqp.device); |
363 | struct ib_wc wc; | 363 | struct ib_wc wc; |
364 | 364 | ||
365 | _VERBS_INFO("QP%d/%d in error state\n", | 365 | ipath_dbg(KERN_INFO "QP%d/%d in error state\n", |
366 | qp->ibqp.qp_num, qp->remote_qpn); | 366 | qp->ibqp.qp_num, qp->remote_qpn); |
367 | 367 | ||
368 | spin_lock(&dev->pending_lock); | 368 | spin_lock(&dev->pending_lock); |
369 | /* XXX What if its already removed by the timeout code? */ | 369 | /* XXX What if its already removed by the timeout code? */ |
@@ -945,8 +945,8 @@ void ipath_sqerror_qp(struct ipath_qp *qp, struct ib_wc *wc) | |||
945 | struct ipath_ibdev *dev = to_idev(qp->ibqp.device); | 945 | struct ipath_ibdev *dev = to_idev(qp->ibqp.device); |
946 | struct ipath_swqe *wqe = get_swqe_ptr(qp, qp->s_last); | 946 | struct ipath_swqe *wqe = get_swqe_ptr(qp, qp->s_last); |
947 | 947 | ||
948 | _VERBS_INFO("Send queue error on QP%d/%d: err: %d\n", | 948 | ipath_dbg(KERN_INFO "Send queue error on QP%d/%d: err: %d\n", |
949 | qp->ibqp.qp_num, qp->remote_qpn, wc->status); | 949 | qp->ibqp.qp_num, qp->remote_qpn, wc->status); |
950 | 950 | ||
951 | spin_lock(&dev->pending_lock); | 951 | spin_lock(&dev->pending_lock); |
952 | /* XXX What if its already removed by the timeout code? */ | 952 | /* XXX What if its already removed by the timeout code? */ |