cxgb4: Issue mbox commands on correct mbox
A couple of RDMA-related called to t4_query_params() were issuing mbox commands on mbox0 instead of mbox4. Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3d9103f80d
commit
5c937dd3f9
|
@ -5959,7 +5959,8 @@ static int adap_init0(struct adapter *adap)
|
|||
params[3] = FW_PARAM_PFVF(CQ_END);
|
||||
params[4] = FW_PARAM_PFVF(OCQ_START);
|
||||
params[5] = FW_PARAM_PFVF(OCQ_END);
|
||||
ret = t4_query_params(adap, 0, 0, 0, 6, params, val);
|
||||
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, params,
|
||||
val);
|
||||
if (ret < 0)
|
||||
goto bye;
|
||||
adap->vres.qp.start = val[0];
|
||||
|
@ -5971,7 +5972,8 @@ static int adap_init0(struct adapter *adap)
|
|||
|
||||
params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
|
||||
params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
|
||||
ret = t4_query_params(adap, 0, 0, 0, 2, params, val);
|
||||
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params,
|
||||
val);
|
||||
if (ret < 0) {
|
||||
adap->params.max_ordird_qp = 8;
|
||||
adap->params.max_ird_adapter = 32 * adap->tids.ntids;
|
||||
|
|
Loading…
Reference in New Issue