diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2010-04-28 05:30:30 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-28 15:44:43 -0400 |
commit | 5298c37f4d1f0360082be9d9e3a236b9cc114a03 (patch) | |
tree | 0daf2443eb11baf1f0d2cb927413bb03f9061b04 /drivers/net/sfc | |
parent | affaf485ca628cb7d7f57ae5e2b8c710c58b11aa (diff) |
sfc: Test only the first pair of TX queues
This makes no immediate difference, but we definitely do not want
to test all TX queues once we allocate a pair of TX queues to each
channel.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc')
-rw-r--r-- | drivers/net/sfc/ethtool.c | 2 | ||||
-rw-r--r-- | drivers/net/sfc/selftest.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/sfc/ethtool.c b/drivers/net/sfc/ethtool.c index d9f9c02a928e..cbe9319f8322 100644 --- a/drivers/net/sfc/ethtool.c +++ b/drivers/net/sfc/ethtool.c | |||
@@ -304,7 +304,7 @@ static int efx_fill_loopback_test(struct efx_nic *efx, | |||
304 | { | 304 | { |
305 | struct efx_tx_queue *tx_queue; | 305 | struct efx_tx_queue *tx_queue; |
306 | 306 | ||
307 | efx_for_each_tx_queue(tx_queue, efx) { | 307 | efx_for_each_channel_tx_queue(tx_queue, &efx->channel[0]) { |
308 | efx_fill_test(test_index++, strings, data, | 308 | efx_fill_test(test_index++, strings, data, |
309 | &lb_tests->tx_sent[tx_queue->queue], | 309 | &lb_tests->tx_sent[tx_queue->queue], |
310 | EFX_TX_QUEUE_NAME(tx_queue), | 310 | EFX_TX_QUEUE_NAME(tx_queue), |
diff --git a/drivers/net/sfc/selftest.c b/drivers/net/sfc/selftest.c index 0106b1d9aae2..3a16e0612267 100644 --- a/drivers/net/sfc/selftest.c +++ b/drivers/net/sfc/selftest.c | |||
@@ -616,8 +616,8 @@ static int efx_test_loopbacks(struct efx_nic *efx, struct efx_self_tests *tests, | |||
616 | goto out; | 616 | goto out; |
617 | } | 617 | } |
618 | 618 | ||
619 | /* Test every TX queue */ | 619 | /* Test both types of TX queue */ |
620 | efx_for_each_tx_queue(tx_queue, efx) { | 620 | efx_for_each_channel_tx_queue(tx_queue, &efx->channel[0]) { |
621 | state->offload_csum = (tx_queue->queue == | 621 | state->offload_csum = (tx_queue->queue == |
622 | EFX_TX_QUEUE_OFFLOAD_CSUM); | 622 | EFX_TX_QUEUE_OFFLOAD_CSUM); |
623 | rc = efx_test_loopback(tx_queue, | 623 | rc = efx_test_loopback(tx_queue, |