Lines Matching refs:_channel
1455 #define efx_for_each_channel(_channel, _efx) \ argument
1456 for (_channel = (_efx)->channel[0]; \
1457 _channel; \
1458 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1459 (_efx)->channel[_channel->channel + 1] : NULL)
1462 #define efx_for_each_channel_rev(_channel, _efx) \ argument
1463 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1464 _channel; \
1465 _channel = _channel->channel ? \
1466 (_efx)->channel[_channel->channel - 1] : NULL)
1497 #define efx_for_each_channel_tx_queue(_tx_queue, _channel) \ argument
1498 if (!efx_channel_has_tx_queues(_channel)) \
1501 for (_tx_queue = (_channel)->tx_queue; \
1502 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES && \
1507 #define efx_for_each_possible_channel_tx_queue(_tx_queue, _channel) \ argument
1508 if (!efx_channel_has_tx_queues(_channel)) \
1511 for (_tx_queue = (_channel)->tx_queue; \
1512 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES; \
1528 #define efx_for_each_channel_rx_queue(_rx_queue, _channel) \ argument
1529 if (!efx_channel_has_rx_queue(_channel)) \
1532 for (_rx_queue = &(_channel)->rx_queue; \