aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sfc
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2008-09-01 07:47:57 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-09-03 09:53:46 -0400
commita2589027ff0011077cdaf761be3a9a4ba40b5118 (patch)
treed39dd0c8ecb6b24246ffd6aeb683c3e0d75dfb00 /drivers/net/sfc
parent955f0a744bf2d2192cb49b2eccffbc02a4adc401 (diff)
sfc: Make efx_for_each_channel_rx_queue() more efficient
Currently each channel can have at most one RX queue, so go straight to that one. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/sfc')
-rw-r--r--drivers/net/sfc/net_driver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/sfc/net_driver.h b/drivers/net/sfc/net_driver.h
index b5649b16cd43..74e934c7e6f8 100644
--- a/drivers/net/sfc/net_driver.h
+++ b/drivers/net/sfc/net_driver.h
@@ -853,9 +853,9 @@ struct efx_nic_type {
853 853
854/* Iterate over all RX queues belonging to a channel */ 854/* Iterate over all RX queues belonging to a channel */
855#define efx_for_each_channel_rx_queue(_rx_queue, _channel) \ 855#define efx_for_each_channel_rx_queue(_rx_queue, _channel) \
856 for (_rx_queue = &_channel->efx->rx_queue[0]; \ 856 for (_rx_queue = &_channel->efx->rx_queue[_channel->channel]; \
857 _rx_queue < &_channel->efx->rx_queue[EFX_MAX_RX_QUEUES]; \ 857 _rx_queue; \
858 _rx_queue++) \ 858 _rx_queue = NULL) \
859 if (_rx_queue->channel != _channel) \ 859 if (_rx_queue->channel != _channel) \
860 continue; \ 860 continue; \
861 else 861 else