Commit 0a9cb481 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma

Pull rdma fixes from Doug Ledford:
 "Round three of 4.7 rc fixes:
   - two fixes for hfi1
   - two fixes for i40iw
   - one omission correction in the port table counter arrays"

* tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma:
  i40iw: Enable remote access rights for stag allocation
  i40iw: do not print unitialized variables in error message
  IB core: Add port_xmit_wait counter
  IB/hfi1: Fix sleep inside atomic issue in init_asic_data
  IB/hfi1: Correct issues with sc5 computation
parents 1a86f944 8e0e7aed
...@@ -530,6 +530,7 @@ static PORT_PMA_ATTR(port_xmit_data , 12, 32, 192); ...@@ -530,6 +530,7 @@ static PORT_PMA_ATTR(port_xmit_data , 12, 32, 192);
static PORT_PMA_ATTR(port_rcv_data , 13, 32, 224); static PORT_PMA_ATTR(port_rcv_data , 13, 32, 224);
static PORT_PMA_ATTR(port_xmit_packets , 14, 32, 256); static PORT_PMA_ATTR(port_xmit_packets , 14, 32, 256);
static PORT_PMA_ATTR(port_rcv_packets , 15, 32, 288); static PORT_PMA_ATTR(port_rcv_packets , 15, 32, 288);
static PORT_PMA_ATTR(port_xmit_wait , 0, 32, 320);
/* /*
* Counters added by extended set * Counters added by extended set
...@@ -560,6 +561,7 @@ static struct attribute *pma_attrs[] = { ...@@ -560,6 +561,7 @@ static struct attribute *pma_attrs[] = {
&port_pma_attr_port_rcv_data.attr.attr, &port_pma_attr_port_rcv_data.attr.attr,
&port_pma_attr_port_xmit_packets.attr.attr, &port_pma_attr_port_xmit_packets.attr.attr,
&port_pma_attr_port_rcv_packets.attr.attr, &port_pma_attr_port_rcv_packets.attr.attr,
&port_pma_attr_port_xmit_wait.attr.attr,
NULL NULL
}; };
...@@ -579,6 +581,7 @@ static struct attribute *pma_attrs_ext[] = { ...@@ -579,6 +581,7 @@ static struct attribute *pma_attrs_ext[] = {
&port_pma_attr_ext_port_xmit_data.attr.attr, &port_pma_attr_ext_port_xmit_data.attr.attr,
&port_pma_attr_ext_port_rcv_data.attr.attr, &port_pma_attr_ext_port_rcv_data.attr.attr,
&port_pma_attr_ext_port_xmit_packets.attr.attr, &port_pma_attr_ext_port_xmit_packets.attr.attr,
&port_pma_attr_port_xmit_wait.attr.attr,
&port_pma_attr_ext_port_rcv_packets.attr.attr, &port_pma_attr_ext_port_rcv_packets.attr.attr,
&port_pma_attr_ext_unicast_rcv_packets.attr.attr, &port_pma_attr_ext_unicast_rcv_packets.attr.attr,
&port_pma_attr_ext_unicast_xmit_packets.attr.attr, &port_pma_attr_ext_unicast_xmit_packets.attr.attr,
...@@ -604,6 +607,7 @@ static struct attribute *pma_attrs_noietf[] = { ...@@ -604,6 +607,7 @@ static struct attribute *pma_attrs_noietf[] = {
&port_pma_attr_ext_port_rcv_data.attr.attr, &port_pma_attr_ext_port_rcv_data.attr.attr,
&port_pma_attr_ext_port_xmit_packets.attr.attr, &port_pma_attr_ext_port_xmit_packets.attr.attr,
&port_pma_attr_ext_port_rcv_packets.attr.attr, &port_pma_attr_ext_port_rcv_packets.attr.attr,
&port_pma_attr_port_xmit_wait.attr.attr,
NULL NULL
}; };
......
...@@ -14113,8 +14113,14 @@ static int init_asic_data(struct hfi1_devdata *dd) ...@@ -14113,8 +14113,14 @@ static int init_asic_data(struct hfi1_devdata *dd)
{ {
unsigned long flags; unsigned long flags;
struct hfi1_devdata *tmp, *peer = NULL; struct hfi1_devdata *tmp, *peer = NULL;
struct hfi1_asic_data *asic_data;
int ret = 0; int ret = 0;
/* pre-allocate the asic structure in case we are the first device */
asic_data = kzalloc(sizeof(*dd->asic_data), GFP_KERNEL);
if (!asic_data)
return -ENOMEM;
spin_lock_irqsave(&hfi1_devs_lock, flags); spin_lock_irqsave(&hfi1_devs_lock, flags);
/* Find our peer device */ /* Find our peer device */
list_for_each_entry(tmp, &hfi1_dev_list, list) { list_for_each_entry(tmp, &hfi1_dev_list, list) {
...@@ -14126,18 +14132,14 @@ static int init_asic_data(struct hfi1_devdata *dd) ...@@ -14126,18 +14132,14 @@ static int init_asic_data(struct hfi1_devdata *dd)
} }
if (peer) { if (peer) {
/* use already allocated structure */
dd->asic_data = peer->asic_data; dd->asic_data = peer->asic_data;
kfree(asic_data);
} else { } else {
dd->asic_data = kzalloc(sizeof(*dd->asic_data), GFP_KERNEL); dd->asic_data = asic_data;
if (!dd->asic_data) {
ret = -ENOMEM;
goto done;
}
mutex_init(&dd->asic_data->asic_resource_mutex); mutex_init(&dd->asic_data->asic_resource_mutex);
} }
dd->asic_data->dds[dd->hfi1_id] = dd; /* self back-pointer */ dd->asic_data->dds[dd->hfi1_id] = dd; /* self back-pointer */
done:
spin_unlock_irqrestore(&hfi1_devs_lock, flags); spin_unlock_irqrestore(&hfi1_devs_lock, flags);
return ret; return ret;
} }
......
...@@ -678,8 +678,7 @@ void hfi1_ud_rcv(struct hfi1_packet *packet) ...@@ -678,8 +678,7 @@ void hfi1_ud_rcv(struct hfi1_packet *packet)
u32 tlen = packet->tlen; u32 tlen = packet->tlen;
struct rvt_qp *qp = packet->qp; struct rvt_qp *qp = packet->qp;
bool has_grh = rcv_flags & HFI1_HAS_GRH; bool has_grh = rcv_flags & HFI1_HAS_GRH;
bool sc4_bit = has_sc4_bit(packet); u8 sc5 = hdr2sc((struct hfi1_message_header *)hdr, packet->rhf);
u8 sc;
u32 bth1; u32 bth1;
int is_mcast; int is_mcast;
struct ib_grh *grh = NULL; struct ib_grh *grh = NULL;
...@@ -697,10 +696,8 @@ void hfi1_ud_rcv(struct hfi1_packet *packet) ...@@ -697,10 +696,8 @@ void hfi1_ud_rcv(struct hfi1_packet *packet)
*/ */
struct hfi1_pportdata *ppd = ppd_from_ibp(ibp); struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
u32 lqpn = be32_to_cpu(ohdr->bth[1]) & RVT_QPN_MASK; u32 lqpn = be32_to_cpu(ohdr->bth[1]) & RVT_QPN_MASK;
u8 sl, sc5; u8 sl;
sc5 = (be16_to_cpu(hdr->lrh[0]) >> 12) & 0xf;
sc5 |= sc4_bit;
sl = ibp->sc_to_sl[sc5]; sl = ibp->sc_to_sl[sc5];
process_becn(ppd, sl, 0, lqpn, 0, IB_CC_SVCTYPE_UD); process_becn(ppd, sl, 0, lqpn, 0, IB_CC_SVCTYPE_UD);
...@@ -717,10 +714,6 @@ void hfi1_ud_rcv(struct hfi1_packet *packet) ...@@ -717,10 +714,6 @@ void hfi1_ud_rcv(struct hfi1_packet *packet)
if (!is_mcast && (opcode != IB_OPCODE_CNP) && bth1 & HFI1_FECN_SMASK) { if (!is_mcast && (opcode != IB_OPCODE_CNP) && bth1 & HFI1_FECN_SMASK) {
u16 slid = be16_to_cpu(hdr->lrh[3]); u16 slid = be16_to_cpu(hdr->lrh[3]);
u8 sc5;
sc5 = (be16_to_cpu(hdr->lrh[0]) >> 12) & 0xf;
sc5 |= sc4_bit;
return_cnp(ibp, qp, src_qp, pkey, dlid, slid, sc5, grh); return_cnp(ibp, qp, src_qp, pkey, dlid, slid, sc5, grh);
} }
...@@ -745,10 +738,6 @@ void hfi1_ud_rcv(struct hfi1_packet *packet) ...@@ -745,10 +738,6 @@ void hfi1_ud_rcv(struct hfi1_packet *packet)
if (qp->ibqp.qp_num > 1) { if (qp->ibqp.qp_num > 1) {
struct hfi1_pportdata *ppd = ppd_from_ibp(ibp); struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
u16 slid; u16 slid;
u8 sc5;
sc5 = (be16_to_cpu(hdr->lrh[0]) >> 12) & 0xf;
sc5 |= sc4_bit;
slid = be16_to_cpu(hdr->lrh[3]); slid = be16_to_cpu(hdr->lrh[3]);
if (unlikely(rcv_pkey_check(ppd, pkey, sc5, slid))) { if (unlikely(rcv_pkey_check(ppd, pkey, sc5, slid))) {
...@@ -790,10 +779,6 @@ void hfi1_ud_rcv(struct hfi1_packet *packet) ...@@ -790,10 +779,6 @@ void hfi1_ud_rcv(struct hfi1_packet *packet)
/* Received on QP0, and so by definition, this is an SMP */ /* Received on QP0, and so by definition, this is an SMP */
struct opa_smp *smp = (struct opa_smp *)data; struct opa_smp *smp = (struct opa_smp *)data;
u16 slid = be16_to_cpu(hdr->lrh[3]); u16 slid = be16_to_cpu(hdr->lrh[3]);
u8 sc5;
sc5 = (be16_to_cpu(hdr->lrh[0]) >> 12) & 0xf;
sc5 |= sc4_bit;
if (opa_smp_check(ibp, pkey, sc5, qp, slid, smp)) if (opa_smp_check(ibp, pkey, sc5, qp, slid, smp))
goto drop; goto drop;
...@@ -890,9 +875,7 @@ void hfi1_ud_rcv(struct hfi1_packet *packet) ...@@ -890,9 +875,7 @@ void hfi1_ud_rcv(struct hfi1_packet *packet)
} }
wc.slid = be16_to_cpu(hdr->lrh[3]); wc.slid = be16_to_cpu(hdr->lrh[3]);
sc = (be16_to_cpu(hdr->lrh[0]) >> 12) & 0xf; wc.sl = ibp->sc_to_sl[sc5];
sc |= sc4_bit;
wc.sl = ibp->sc_to_sl[sc];
/* /*
* Save the LMC lower bits if the destination LID is a unicast LID. * Save the LMC lower bits if the destination LID is a unicast LID.
......
...@@ -600,8 +600,7 @@ static enum i40iw_status_code i40iw_create_cqp(struct i40iw_device *iwdev) ...@@ -600,8 +600,7 @@ static enum i40iw_status_code i40iw_create_cqp(struct i40iw_device *iwdev)
cqp_init_info.scratch_array = cqp->scratch_array; cqp_init_info.scratch_array = cqp->scratch_array;
status = dev->cqp_ops->cqp_init(dev->cqp, &cqp_init_info); status = dev->cqp_ops->cqp_init(dev->cqp, &cqp_init_info);
if (status) { if (status) {
i40iw_pr_err("cqp init status %d maj_err %d min_err %d\n", i40iw_pr_err("cqp init status %d\n", status);
status, maj_err, min_err);
goto exit; goto exit;
} }
status = dev->cqp_ops->cqp_create(dev->cqp, true, &maj_err, &min_err); status = dev->cqp_ops->cqp_create(dev->cqp, true, &maj_err, &min_err);
......
...@@ -1474,6 +1474,7 @@ static int i40iw_hw_alloc_stag(struct i40iw_device *iwdev, struct i40iw_mr *iwmr ...@@ -1474,6 +1474,7 @@ static int i40iw_hw_alloc_stag(struct i40iw_device *iwdev, struct i40iw_mr *iwmr
info->stag_idx = iwmr->stag >> I40IW_CQPSQ_STAG_IDX_SHIFT; info->stag_idx = iwmr->stag >> I40IW_CQPSQ_STAG_IDX_SHIFT;
info->pd_id = iwpd->sc_pd.pd_id; info->pd_id = iwpd->sc_pd.pd_id;
info->total_len = iwmr->length; info->total_len = iwmr->length;
info->remote_access = true;
cqp_info->cqp_cmd = OP_ALLOC_STAG; cqp_info->cqp_cmd = OP_ALLOC_STAG;
cqp_info->post_sq = 1; cqp_info->post_sq = 1;
cqp_info->in.u.alloc_stag.dev = &iwdev->sc_dev; cqp_info->in.u.alloc_stag.dev = &iwdev->sc_dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment