提交 64fc7953 编写于 作者: P Pavel Belous 提交者: David S. Miller

net:ethernet:aquantia: Fix for number of RSS queues.

The number of RSS queues should be not more than numbers of CPU.
Its does not make sense to increase perfomance, and also cause problems on
some motherboards.

Fixes: 94f6c9e4cdf6 ("net: ethernet: aquantia: Support for NIC-specific code")
Signed-off-by: NPavel Belous <Pavel.Belous@aquantia.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 278175ab
...@@ -103,6 +103,8 @@ int aq_nic_cfg_start(struct aq_nic_s *self) ...@@ -103,6 +103,8 @@ int aq_nic_cfg_start(struct aq_nic_s *self)
else else
cfg->vecs = 1U; cfg->vecs = 1U;
cfg->num_rss_queues = min(cfg->vecs, AQ_CFG_NUM_RSS_QUEUES_DEF);
cfg->irq_type = aq_pci_func_get_irq_type(self->aq_pci_func); cfg->irq_type = aq_pci_func_get_irq_type(self->aq_pci_func);
if ((cfg->irq_type == AQ_HW_IRQ_LEGACY) || if ((cfg->irq_type == AQ_HW_IRQ_LEGACY) ||
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册