aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tg3.c
diff options
context:
space:
mode:
authorMatt Carlson <mcarlson@broadcom.com>2010-09-15 04:59:54 -0400
committerDavid S. Miller <davem@davemloft.net>2010-09-15 17:16:11 -0400
commitf0392d24485e4c144d2741a5424f069b8b5f30e7 (patch)
tree3dc44238b0a60a439e6594e1835891b56f99c6e9 /drivers/net/tg3.c
parent41a8a7ee4a78216962f3afcea5968c04d0ab3b08 (diff)
tg3: Disable TSS
It was recently discovered that enabling TSS can lockup the device. This patch disables the feature until a suitable workaround can be found. Signed-off-by: Matt Carlson <mcarlson@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r--drivers/net/tg3.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index c3a430cfbe0..38f1b19b776 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -8827,16 +8827,9 @@ static bool tg3_enable_msix(struct tg3 *tp)
8827 tp->napi[i].irq_vec = msix_ent[i].vector; 8827 tp->napi[i].irq_vec = msix_ent[i].vector;
8828 8828
8829 tp->dev->real_num_tx_queues = 1; 8829 tp->dev->real_num_tx_queues = 1;
8830 if (tp->irq_cnt > 1) { 8830 if (tp->irq_cnt > 1)
8831 tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS; 8831 tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS;
8832 8832
8833 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8834 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719) {
8835 tp->tg3_flags3 |= TG3_FLG3_ENABLE_TSS;
8836 tp->dev->real_num_tx_queues = tp->irq_cnt - 1;
8837 }
8838 }
8839
8840 return true; 8833 return true;
8841} 8834}
8842 8835