|
@@ -1572,13 +1572,11 @@ static bool fm10k_set_rss_queues(struct fm10k_intfc *interface)
|
|
**/
|
|
**/
|
|
static void fm10k_set_num_queues(struct fm10k_intfc *interface)
|
|
static void fm10k_set_num_queues(struct fm10k_intfc *interface)
|
|
{
|
|
{
|
|
- /* Start with base case */
|
|
|
|
- interface->num_rx_queues = 1;
|
|
|
|
- interface->num_tx_queues = 1;
|
|
|
|
-
|
|
|
|
|
|
+ /* Attempt to setup QoS and RSS first */
|
|
if (fm10k_set_qos_queues(interface))
|
|
if (fm10k_set_qos_queues(interface))
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
+ /* If we don't have QoS, just fallback to only RSS. */
|
|
fm10k_set_rss_queues(interface);
|
|
fm10k_set_rss_queues(interface);
|
|
}
|
|
}
|
|
|
|
|