diff --git a/[refs] b/[refs] index 50441d45afe5..9613386e55d8 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: deabaac8beeccdfee5358c0cd4c63258f28f3a74 +refs/heads/master: b92b9040f6e4997b895b7b9c655a158354d28964 diff --git a/trunk/drivers/net/tg3.c b/trunk/drivers/net/tg3.c index 4fa8ee30b70f..75ebebc9115a 100644 --- a/trunk/drivers/net/tg3.c +++ b/trunk/drivers/net/tg3.c @@ -9037,8 +9037,14 @@ static bool tg3_enable_msix(struct tg3 *tp) pci_disable_msix(tp->pdev); return false; } - if (tp->irq_cnt > 1) + + if (tp->irq_cnt > 1) { tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS; + if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719) { + tp->tg3_flags3 |= TG3_FLG3_ENABLE_TSS; + netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1); + } + } return true; }