Lines Matching refs:_channel
1376 #define efx_for_each_channel(_channel, _efx) \ argument
1377 for (_channel = (_efx)->channel[0]; \
1378 _channel; \
1379 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1380 (_efx)->channel[_channel->channel + 1] : NULL)
1383 #define efx_for_each_channel_rev(_channel, _efx) \ argument
1384 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1385 _channel; \
1386 _channel = _channel->channel ? \
1387 (_efx)->channel[_channel->channel - 1] : NULL)
1418 #define efx_for_each_channel_tx_queue(_tx_queue, _channel) \ argument
1419 if (!efx_channel_has_tx_queues(_channel)) \
1422 for (_tx_queue = (_channel)->tx_queue; \
1423 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES && \
1428 #define efx_for_each_possible_channel_tx_queue(_tx_queue, _channel) \ argument
1429 if (!efx_channel_has_tx_queues(_channel)) \
1432 for (_tx_queue = (_channel)->tx_queue; \
1433 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES; \
1449 #define efx_for_each_channel_rx_queue(_rx_queue, _channel) \ argument
1450 if (!efx_channel_has_rx_queue(_channel)) \
1453 for (_rx_queue = &(_channel)->rx_queue; \