Commit 602e0d10 authored by Thomas Klein's avatar Thomas Klein Committed by Jeff Garzik

ehea: Fixing firmware queue config issue

Fix to use exactly one queue for incoming packets in all
firmware configurations
Signed-off-by: default avatarThomas Klein <tklein@de.ibm.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 061bf3cd
...@@ -998,7 +998,7 @@ static int ehea_configure_port(struct ehea_port *port) ...@@ -998,7 +998,7 @@ static int ehea_configure_port(struct ehea_port *port)
| EHEA_BMASK_SET(PXLY_RC_JUMBO_FRAME, 1); | EHEA_BMASK_SET(PXLY_RC_JUMBO_FRAME, 1);
for (i = 0; i < port->num_def_qps; i++) for (i = 0; i < port->num_def_qps; i++)
cb0->default_qpn_arr[i] = port->port_res[i].qp->init_attr.qp_nr; cb0->default_qpn_arr[i] = port->port_res[0].qp->init_attr.qp_nr;
if (netif_msg_ifup(port)) if (netif_msg_ifup(port))
ehea_dump(cb0, sizeof(*cb0), "ehea_configure_port"); ehea_dump(cb0, sizeof(*cb0), "ehea_configure_port");
......
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