hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
kernel/drivers/infiniband/ulp/ipoib/ipoib_main.c
....@@ -2188,6 +2188,14 @@
21882188 rn->attach_mcast = ipoib_mcast_attach;
21892189 rn->detach_mcast = ipoib_mcast_detach;
21902190 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;
21912199 }
21922200
21932201 priv->rn_ops = dev->netdev_ops;