sfc: assign TXQs without gaps
Since we only allocate VIs for the number of TXQs we actually need, we cannot naively use "channel * TXQ_TYPES + txq" for the TXQ number, as this has gaps (when efx->tx_queues_per_channel < EFX_TXQ_TYPES) and thus overruns the driver's VI allocations, causing the firmware to reject the MC_CMD_INIT_TXQ based on INSTANCE. Thus, we distinguish INSTANCE (stored in tx_queue->queue) from LABEL (tx_queue->label); the former is allocated starting from 0 in efx_set_channels(), while the latter is simply the txq type (index in channel->tx_queue array). To simplify things, rather than changing tx_queues_per_channel after setting up TXQs, make Siena always probe its HIGHPRI queues at start of day, rather than deferring it until tc mqprio enables them. Signed-off-by:Edward Cree <ecree@solarflare.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
Showing
- drivers/net/ethernet/sfc/ef10.c 1 addition, 1 deletiondrivers/net/ethernet/sfc/ef10.c
- drivers/net/ethernet/sfc/efx_channels.c 28 additions, 10 deletionsdrivers/net/ethernet/sfc/efx_channels.c
- drivers/net/ethernet/sfc/ethtool_common.c 3 additions, 4 deletionsdrivers/net/ethernet/sfc/ethtool_common.c
- drivers/net/ethernet/sfc/farch.c 3 additions, 3 deletionsdrivers/net/ethernet/sfc/farch.c
- drivers/net/ethernet/sfc/mcdi_functions.c 2 additions, 2 deletionsdrivers/net/ethernet/sfc/mcdi_functions.c
- drivers/net/ethernet/sfc/net_driver.h 4 additions, 1 deletiondrivers/net/ethernet/sfc/net_driver.h
- drivers/net/ethernet/sfc/nic_common.h 1 addition, 1 deletiondrivers/net/ethernet/sfc/nic_common.h
- drivers/net/ethernet/sfc/selftest.c 9 additions, 9 deletionsdrivers/net/ethernet/sfc/selftest.c
- drivers/net/ethernet/sfc/siena.c 1 addition, 1 deletiondrivers/net/ethernet/sfc/siena.c
- drivers/net/ethernet/sfc/tx.c 6 additions, 40 deletionsdrivers/net/ethernet/sfc/tx.c
Please register or sign in to comment