diff options
author | Michael S. Tsirkin <mst@mellanox.co.il> | 2005-10-29 07:39:42 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2005-10-29 07:39:42 -0700 |
commit | affcd50546d4788b7849e2b2e2ec7bc50d64c5f8 (patch) | |
tree | e4e6a0f5f2203569b6ada4c101a146c3a4f24c28 /drivers/infiniband/hw/mthca/mthca_eq.c | |
parent | 89fbb69c4f285019ba5e029963dc11cc6beb078a (diff) | |
download | blackbird-op-linux-affcd50546d4788b7849e2b2e2ec7bc50d64c5f8.tar.gz blackbird-op-linux-affcd50546d4788b7849e2b2e2ec7bc50d64c5f8.zip |
[IB] mthca: report asynchronous CQ events
Implement reporting asynchronous CQ events in Mellanox HCA driver.
Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/mthca/mthca_eq.c')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_eq.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_eq.c b/drivers/infiniband/hw/mthca/mthca_eq.c index e5a047a6dbeb..34d68e5a72d8 100644 --- a/drivers/infiniband/hw/mthca/mthca_eq.c +++ b/drivers/infiniband/hw/mthca/mthca_eq.c @@ -292,7 +292,7 @@ static int mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) case MTHCA_EVENT_TYPE_COMP: disarm_cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff; disarm_cq(dev, eq->eqn, disarm_cqn); - mthca_cq_event(dev, disarm_cqn); + mthca_cq_completion(dev, disarm_cqn); break; case MTHCA_EVENT_TYPE_PATH_MIG: @@ -364,6 +364,8 @@ static int mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) eqe->event.cq_err.syndrome == 1 ? "overrun" : "access violation", be32_to_cpu(eqe->event.cq_err.cqn) & 0xffffff); + mthca_cq_event(dev, be32_to_cpu(eqe->event.cq_err.cqn), + IB_EVENT_CQ_ERR); break; case MTHCA_EVENT_TYPE_EQ_OVERFLOW: |