]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
sfc: Correct efx_for_each_possible_channel_tx_queue() to skip non-TX channels
authorBen Hutchings <bhutchings@solarflare.com>
Thu, 23 Feb 2012 00:45:50 +0000 (00:45 +0000)
committerBen Hutchings <bhutchings@solarflare.com>
Thu, 23 Feb 2012 00:45:50 +0000 (00:45 +0000)
efx_for_each_possible_channel_tx_queue() should do nothing for RX-only
or extra channels.  The current definition results in allocating
additional unused hardware TX queues when using the mqprio qdisc and
either separate_tx_channels or SR-IOV.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
drivers/net/ethernet/sfc/net_driver.h

index 3fbec458c3237a7e90f5732f64c9777f0d15f73d..0b95505e8968da3cf33cfb7552e069a6d89e9d4a 100644 (file)
@@ -1030,9 +1030,12 @@ static inline bool efx_tx_queue_used(struct efx_tx_queue *tx_queue)
 
 /* Iterate over all possible TX queues belonging to a channel */
 #define efx_for_each_possible_channel_tx_queue(_tx_queue, _channel)    \
-       for (_tx_queue = (_channel)->tx_queue;                          \
-            _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES;          \
-            _tx_queue++)
+       if (!efx_channel_has_tx_queues(_channel))                       \
+               ;                                                       \
+       else                                                            \
+               for (_tx_queue = (_channel)->tx_queue;                  \
+                    _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES;  \
+                    _tx_queue++)
 
 static inline bool efx_channel_has_rx_queue(struct efx_channel *channel)
 {