kernel/drivers/infiniband/ulp/ipoib/ipoib_main.c
.. .. @@ -2188,6 +2188,14 @@ 2188 2188 rn->attach_mcast = ipoib_mcast_attach; 2189 2189 rn->detach_mcast = ipoib_mcast_detach; 2190 2190 rn->hca = hca; 2191 +2192 + rc = netif_set_real_num_tx_queues(dev, 1);2193 + if (rc)2194 + goto out;2195 +2196 + rc = netif_set_real_num_rx_queues(dev, 1);2197 + if (rc)2198 + goto out;2191 2199 } 2192 2200 2193 2201 priv->rn_ops = dev->netdev_ops;