RDMA/mthca: Fix crash when polling CQ for shared QPs
authorThomas Bogendoerfer <tbogendoerfer@suse.de>
Thu, 13 Jul 2023 14:16:58 +0000 (16:16 +0200)
committerLeon Romanovsky <leon@kernel.org>
Mon, 17 Jul 2023 05:02:13 +0000 (08:02 +0300)
commitdc52aadbc1849cbe3fcf6bc54d35f6baa396e0a1
tree02a4d997afb9fdbb12baca1e9f3326a038630eda
parent0e15863015d97c1ee2cc29d599abcc7fa2dc3e95
RDMA/mthca: Fix crash when polling CQ for shared QPs

Commit 21c2fe94abb2 ("RDMA/mthca: Combine special QP struct with mthca QP")
introduced a new struct mthca_sqp which doesn't contain struct mthca_qp
any longer. Placing a pointer of this new struct into qptable leads
to crashes, because mthca_poll_one() expects a qp pointer. Fix this
by putting the correct pointer into qptable.

Fixes: 21c2fe94abb2 ("RDMA/mthca: Combine special QP struct with mthca QP")
Signed-off-by: Thomas Bogendoerfer <tbogendoerfer@suse.de>
Link: https://lore.kernel.org/r/20230713141658.9426-1-tbogendoerfer@suse.de
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/hw/mthca/mthca_qp.c