Lines Matching refs:_channel
1458 #define efx_for_each_channel(_channel, _efx) \ argument
1459 for (_channel = (_efx)->channel[0]; \
1460 _channel; \
1461 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1462 (_efx)->channel[_channel->channel + 1] : NULL)
1465 #define efx_for_each_channel_rev(_channel, _efx) \ argument
1466 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1467 _channel; \
1468 _channel = _channel->channel ? \
1469 (_efx)->channel[_channel->channel - 1] : NULL)
1500 #define efx_for_each_channel_tx_queue(_tx_queue, _channel) \ argument
1501 if (!efx_channel_has_tx_queues(_channel)) \
1504 for (_tx_queue = (_channel)->tx_queue; \
1505 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES && \
1510 #define efx_for_each_possible_channel_tx_queue(_tx_queue, _channel) \ argument
1511 if (!efx_channel_has_tx_queues(_channel)) \
1514 for (_tx_queue = (_channel)->tx_queue; \
1515 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES; \
1531 #define efx_for_each_channel_rx_queue(_rx_queue, _channel) \ argument
1532 if (!efx_channel_has_rx_queue(_channel)) \
1535 for (_rx_queue = &(_channel)->rx_queue; \