提交 09c4854f 编写于 作者: K Kalderon, Michal 提交者: Jason Gunthorpe

RDMA/qedr: Fix wmb usage in qedr

This patch comes as a result of Sinan Kaya's work and the decision that
writel() must be a strong enough barrier for DMA.

wmb usages in qedr driver have either been removed where they were there
only to order DMA accesses, and replaced with smp_wmb and comments for the
places that the barrier was there for SMP reasons.

Fixes: 561e5d48 ("RDMA/qedr: eliminate duplicate barriers on weakly-ordered archs")
Signed-off-by: NMichal Kalderon <Michal.Kalderon@cavium.com>
Signed-off-by: NAriel Elior <Ariel.Elior@cavium.com>
Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
上级 39e00b6c
...@@ -804,8 +804,6 @@ static inline void qedr_init_cq_params(struct qedr_cq *cq, ...@@ -804,8 +804,6 @@ static inline void qedr_init_cq_params(struct qedr_cq *cq,
static void doorbell_cq(struct qedr_cq *cq, u32 cons, u8 flags) static void doorbell_cq(struct qedr_cq *cq, u32 cons, u8 flags)
{ {
/* Flush data before signalling doorbell */
wmb();
cq->db.data.agg_flags = flags; cq->db.data.agg_flags = flags;
cq->db.data.value = cpu_to_le32(cons); cq->db.data.value = cpu_to_le32(cons);
writeq(cq->db.raw, cq->db_addr); writeq(cq->db.raw, cq->db_addr);
...@@ -1812,8 +1810,7 @@ static int qedr_update_qp_state(struct qedr_dev *dev, ...@@ -1812,8 +1810,7 @@ static int qedr_update_qp_state(struct qedr_dev *dev,
*/ */
if (rdma_protocol_roce(&dev->ibdev, 1)) { if (rdma_protocol_roce(&dev->ibdev, 1)) {
wmb(); writel(qp->rq.db_data.raw, qp->rq.db);
writel_relaxed(qp->rq.db_data.raw, qp->rq.db);
/* Make sure write takes effect */ /* Make sure write takes effect */
mmiowb(); mmiowb();
} }
...@@ -3198,9 +3195,16 @@ int qedr_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, ...@@ -3198,9 +3195,16 @@ int qedr_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
* vane. However this is not harmful (as long as the producer value is * vane. However this is not harmful (as long as the producer value is
* unchanged). For performance reasons we avoid checking for this * unchanged). For performance reasons we avoid checking for this
* redundant doorbell. * redundant doorbell.
*
* qp->wqe_wr_id is accessed during qedr_poll_cq, as
* soon as we give the doorbell, we could get a completion
* for this wr, therefore we need to make sure that the
* memory is updated before giving the doorbell.
* During qedr_poll_cq, rmb is called before accessing the
* cqe. This covers for the smp_rmb as well.
*/ */
wmb(); smp_wmb();
writel_relaxed(qp->sq.db_data.raw, qp->sq.db); writel(qp->sq.db_data.raw, qp->sq.db);
/* Make sure write sticks */ /* Make sure write sticks */
mmiowb(); mmiowb();
...@@ -3286,8 +3290,14 @@ int qedr_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr, ...@@ -3286,8 +3290,14 @@ int qedr_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
qedr_inc_sw_prod(&qp->rq); qedr_inc_sw_prod(&qp->rq);
/* Flush all the writes before signalling doorbell */ /* qp->rqe_wr_id is accessed during qedr_poll_cq, as
wmb(); * soon as we give the doorbell, we could get a completion
* for this wr, therefore we need to make sure that the
* memory is update before giving the doorbell.
* During qedr_poll_cq, rmb is called before accessing the
* cqe. This covers for the smp_rmb as well.
*/
smp_wmb();
qp->rq.db_data.data.value++; qp->rq.db_data.data.value++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册