Lines Matching refs:_channel
1387 #define efx_for_each_channel(_channel, _efx) \ argument
1388 for (_channel = (_efx)->channel[0]; \
1389 _channel; \
1390 _channel = (_channel->channel + 1 < (_efx)->n_channels) ? \
1391 (_efx)->channel[_channel->channel + 1] : NULL)
1394 #define efx_for_each_channel_rev(_channel, _efx) \ argument
1395 for (_channel = (_efx)->channel[(_efx)->n_channels - 1]; \
1396 _channel; \
1397 _channel = _channel->channel ? \
1398 (_efx)->channel[_channel->channel - 1] : NULL)
1429 #define efx_for_each_channel_tx_queue(_tx_queue, _channel) \ argument
1430 if (!efx_channel_has_tx_queues(_channel)) \
1433 for (_tx_queue = (_channel)->tx_queue; \
1434 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES && \
1439 #define efx_for_each_possible_channel_tx_queue(_tx_queue, _channel) \ argument
1440 if (!efx_channel_has_tx_queues(_channel)) \
1443 for (_tx_queue = (_channel)->tx_queue; \
1444 _tx_queue < (_channel)->tx_queue + EFX_TXQ_TYPES; \
1460 #define efx_for_each_channel_rx_queue(_rx_queue, _channel) \ argument
1461 if (!efx_channel_has_rx_queue(_channel)) \
1464 for (_rx_queue = &(_channel)->rx_queue; \