mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 04:03:58 +08:00
RDMA/amso1100: Initialize the wait_queue_head_t in the c2_qp structure
Fix a crash if the driver has to wait for a QP reference to be dropped when destroying the QP. Signed-off-by: Ethan Burns <eaburns@iol.unh.edu> Acked-by: Tom Tucker <tom@opengridcomputing.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
1e4dcd22ef
commit
4e8e6ee380
@ -506,6 +506,7 @@ int c2_alloc_qp(struct c2_dev *c2dev,
|
||||
qp->send_sgl_depth = qp_attrs->cap.max_send_sge;
|
||||
qp->rdma_write_sgl_depth = qp_attrs->cap.max_send_sge;
|
||||
qp->recv_sgl_depth = qp_attrs->cap.max_recv_sge;
|
||||
init_waitqueue_head(&qp->wait);
|
||||
|
||||
/* Initialize the SQ MQ */
|
||||
q_size = be32_to_cpu(reply->sq_depth);
|
||||
|
Loading…
Reference in New Issue
Block a user