|
@@ -410,11 +410,6 @@ static int ehea_treat_poll_error(struct ehea_port_res *pr, int rq,
|
|
|
if (cqe->status & EHEA_CQE_STAT_ERR_CRC)
|
|
|
pr->p_stats.err_frame_crc++;
|
|
|
|
|
|
- if (netif_msg_rx_err(pr->port)) {
|
|
|
- ehea_error("CQE Error for QP %d", pr->qp->init_attr.qp_nr);
|
|
|
- ehea_dump(cqe, sizeof(*cqe), "CQE");
|
|
|
- }
|
|
|
-
|
|
|
if (rq == 2) {
|
|
|
*processed_rq2 += 1;
|
|
|
skb = get_skb_by_index(pr->rq2_skba.arr, pr->rq2_skba.len, cqe);
|
|
@@ -426,7 +421,11 @@ static int ehea_treat_poll_error(struct ehea_port_res *pr, int rq,
|
|
|
}
|
|
|
|
|
|
if (cqe->status & EHEA_CQE_STAT_FAT_ERR_MASK) {
|
|
|
- ehea_error("Critical receive error. Resetting port.");
|
|
|
+ if (netif_msg_rx_err(pr->port)) {
|
|
|
+ ehea_error("Critical receive error for QP %d. "
|
|
|
+ "Resetting port.", pr->qp->init_attr.qp_nr);
|
|
|
+ ehea_dump(cqe, sizeof(*cqe), "CQE");
|
|
|
+ }
|
|
|
schedule_work(&pr->port->reset_task);
|
|
|
return 1;
|
|
|
}
|