mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
RDMA/nes: Correct cap.max_inline_data assignment in nes_query_qp()
cap.max_inline_data is incorrectly set in init_attr instead of attr. Set it in attr so subsequent init_attr.cap assignment will get the correct value. Signed-off-by: Chien Tung <chien.tin.tung@intel.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
b72c40949b
commit
eadde3a1a5
1 changed files with 4 additions and 5 deletions
|
@ -2820,11 +2820,10 @@ static int nes_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
|
|||
attr->cap.max_send_wr = nesqp->hwqp.sq_size;
|
||||
attr->cap.max_recv_wr = nesqp->hwqp.rq_size;
|
||||
attr->cap.max_recv_sge = 1;
|
||||
if (nes_drv_opt & NES_DRV_OPT_NO_INLINE_DATA) {
|
||||
init_attr->cap.max_inline_data = 0;
|
||||
} else {
|
||||
init_attr->cap.max_inline_data = 64;
|
||||
}
|
||||
if (nes_drv_opt & NES_DRV_OPT_NO_INLINE_DATA)
|
||||
attr->cap.max_inline_data = 0;
|
||||
else
|
||||
attr->cap.max_inline_data = 64;
|
||||
|
||||
init_attr->event_handler = nesqp->ibqp.event_handler;
|
||||
init_attr->qp_context = nesqp->ibqp.qp_context;
|
||||
|
|
Loading…
Reference in a new issue