Home
last modified time | relevance | path

Searched refs:combined_count (Results 1 – 25 of 41) sorted by relevance

12

/linux/net/ethtool/
H A Dchannels.c83 channels->combined_count)))) in channels_fill_reply()
121 old_total = channels.combined_count + in ethnl_set_channels()
130 ethnl_update_u32(&channels.combined_count, in ethnl_set_channels()
143 else if (channels.combined_count > channels.max_combined) in ethnl_set_channels()
154 if (!channels.combined_count && !channels.rx_count) in ethnl_set_channels()
156 else if (!channels.combined_count && !channels.tx_count) in ethnl_set_channels()
173 from_channel = channels.combined_count + in ethnl_set_channels()
H A Dcommon.c740 if (channels.combined_count + channels.rx_count <= max_rxfh_in_use) { in ethtool_check_max_channel()
745 if (channels.combined_count + channels.rx_count <= max_rxnfc_in_use) { in ethtool_check_max_channel()
752 if (channels.combined_count + channels.rx_count <= max_mp_in_use) { in ethtool_check_max_channel()
H A Dioctl.c2215 channels.combined_count == curr.combined_count && in ethtool_set_channels()
2222 channels.combined_count > curr.max_combined || in ethtool_set_channels()
2227 if (!channels.combined_count && in ethtool_set_channels()
2236 from_channel = channels.combined_count + in ethtool_set_channels()
2238 to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count); in ethtool_set_channels()
/linux/tools/net/ynl/samples/
H A Dethtool.c35 if (dev->_present.combined_count) in main()
36 printf("combined %d ", dev->combined_count); in main()
/linux/drivers/net/netdevsim/
H A Dethtool.c101 ch->combined_count = ns->ethtool.channels; in nsim_get_channels()
126 err = netif_set_real_num_queues(dev, ch->combined_count, in nsim_set_channels()
127 ch->combined_count); in nsim_set_channels()
131 ns->ethtool.channels = ch->combined_count; in nsim_set_channels()
/linux/drivers/net/ethernet/emulex/benet/
H A Dbe_ethtool.c1220 ch->combined_count = min(adapter->num_tx_qs, num_rx_irqs); in be_get_channels()
1221 ch->rx_count = num_rx_irqs - ch->combined_count; in be_get_channels()
1222 ch->tx_count = adapter->num_tx_qs - ch->combined_count; in be_get_channels()
1239 if (ch->other_count || !ch->combined_count || in be_set_channels()
1243 if (ch->combined_count > be_max_qp_irqs(adapter) || in be_set_channels()
1245 (ch->rx_count + ch->combined_count) > be_max_rx_irqs(adapter)) || in be_set_channels()
1247 (ch->tx_count + ch->combined_count) > be_max_tx_irqs(adapter))) in be_set_channels()
1250 adapter->cfg_num_rx_irqs = ch->combined_count + ch->rx_count; in be_set_channels()
1251 adapter->cfg_num_tx_irqs = ch->combined_count + ch->tx_count; in be_set_channels()
/linux/drivers/net/ethernet/meta/fbnic/
H A Dfbnic_ethtool.c1416 ch->combined_count = min(fbn->num_rx_queues, in fbnic_get_channels()
1419 ch->combined_count = in fbnic_get_channels()
1421 ch->rx_count = fbn->num_rx_queues - ch->combined_count; in fbnic_get_channels()
1422 ch->tx_count = fbn->num_tx_queues - ch->combined_count; in fbnic_get_channels()
1429 fbn->num_rx_queues = ch->rx_count + ch->combined_count; in fbnic_set_queues()
1430 fbn->num_tx_queues = ch->tx_count + ch->combined_count; in fbnic_set_queues()
1431 fbn->num_napi = min(ch->rx_count + ch->tx_count + ch->combined_count, in fbnic_set_queues()
1451 if ((ch->rx_count && ch->tx_count && ch->combined_count) || in fbnic_set_channels()
1452 (standalone && standalone + ch->combined_count > max_napis) || in fbnic_set_channels()
1453 ch->rx_count + ch->combined_count > fbd->max_num_queues || in fbnic_set_channels()
[all …]
/linux/drivers/net/ethernet/cavium/liquidio/
H A Dlio_ethtool.c504 u32 combined_count = 0, max_combined = 0; in lio_ethtool_get_channels() local
522 combined_count = oct->num_iqs; in lio_ethtool_get_channels()
530 combined_count = oct->num_iqs; in lio_ethtool_get_channels()
538 channel->combined_count = combined_count; in lio_ethtool_get_channels()
606 u32 combined_count, max_combined; in lio_ethtool_set_channels() local
616 if (!channel->combined_count || channel->other_count || in lio_ethtool_set_channels()
620 combined_count = channel->combined_count; in lio_ethtool_set_channels()
644 if (combined_count > max_combined || combined_count < 1) in lio_ethtool_set_channels()
647 if (combined_count == oct->num_iqs) in lio_ethtool_set_channels()
657 if (lio_reset_queues(dev, combined_count)) in lio_ethtool_set_channels()
/linux/drivers/net/ethernet/microsoft/mana/
H A Dmana_ethtool.c388 channel->combined_count = apc->num_queues; in mana_get_channels()
395 unsigned int new_count = channels->combined_count; in mana_set_channels()
/linux/drivers/net/ethernet/google/gve/
H A Dgve_ethtool.c474 cmd->combined_count = 0; in gve_get_channels()
491 if (cmd->combined_count != old_settings.combined_count) in gve_set_channels()
/linux/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_ethtool.c3550 channels->combined_count = BNX2X_NUM_ETH_QUEUES(bp); in bnx2x_get_channels()
3585 channels->combined_count); in bnx2x_set_channels()
3596 || (channels->combined_count == 0) || in bnx2x_set_channels()
3597 (channels->combined_count > BNX2X_MAX_RSS_COUNT(bp))) { in bnx2x_set_channels()
3603 if (channels->combined_count == BNX2X_NUM_ETH_QUEUES(bp)) { in bnx2x_set_channels()
3613 bnx2x_change_num_queues(bp, channels->combined_count); in bnx2x_set_channels()
3617 bnx2x_change_num_queues(bp, channels->combined_count); in bnx2x_set_channels()
/linux/drivers/net/ethernet/intel/idpf/
H A Didpf_ethtool.c496 ch->combined_count = combined; in idpf_get_channels()
535 num_req_tx_q = ch->combined_count + ch->tx_count; in idpf_set_channels()
536 num_req_rx_q = ch->combined_count + ch->rx_count; in idpf_set_channels()
/linux/drivers/net/vmxnet3/
H A Dvmxnet3_ethtool.c1300 ec->combined_count = adapter->num_tx_queues; in vmxnet3_get_channels()
1308 ec->combined_count = 1; in vmxnet3_get_channels()
1317 ec->max_combined = ec->combined_count; in vmxnet3_get_channels()
/linux/drivers/net/ethernet/netronome/nfp/
H A Dnfp_net_ethtool.c2217 channel->combined_count = min(nn->dp.num_rx_rings, num_tx_rings); in nfp_net_get_channels()
2218 channel->rx_count = nn->dp.num_rx_rings - channel->combined_count; in nfp_net_get_channels()
2219 channel->tx_count = num_tx_rings - channel->combined_count; in nfp_net_get_channels()
2252 total_rx = channel->combined_count + channel->rx_count; in nfp_net_set_channels()
2253 total_tx = channel->combined_count + channel->tx_count; in nfp_net_set_channels()
/linux/drivers/net/ethernet/amazon/ena/
H A Dena_ethtool.c1014 channels->combined_count = adapter->num_io_queues; in ena_get_channels()
1021 u32 count = channels->combined_count; in ena_set_channels()
/linux/drivers/s390/net/
H A Dqeth_ethtool.c211 channels->combined_count = 0; in qeth_get_channels()
/linux/drivers/net/ethernet/engleder/
H A Dtsnep_ethtool.c304 ch->combined_count = adapter->num_queues; in tsnep_ethtool_get_channels()
/linux/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_ethtool.c923 channel->combined_count = bp->rx_nr_rings; in bnxt_get_channels()
925 channel->combined_count--; in bnxt_get_channels()
947 if (!channel->combined_count && in bnxt_set_channels()
951 if (channel->combined_count && in bnxt_set_channels()
959 if (channel->combined_count) in bnxt_set_channels()
964 req_tx_rings = sh ? channel->combined_count : channel->tx_count; in bnxt_set_channels()
965 req_rx_rings = sh ? channel->combined_count : channel->rx_count; in bnxt_set_channels()
998 bp->rx_nr_rings = channel->combined_count; in bnxt_set_channels()
999 bp->tx_nr_rings_per_tc = channel->combined_count; in bnxt_set_channels()
/linux/drivers/net/ethernet/qlogic/qede/
H A Dqede_ethtool.c1060 channels->combined_count = QEDE_QUEUE_CNT(edev) - edev->fp_num_tx - in qede_get_channels()
1075 channels->other_count, channels->combined_count); in qede_set_channels()
1078 channels->combined_count; in qede_set_channels()
1087 if (!(channels->combined_count || (channels->rx_count && in qede_set_channels()
/linux/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_ethtool.c1120 ch->combined_count = interface->ring_feature[RING_F_RSS].indices; in fm10k_get_channels()
1127 unsigned int count = ch->combined_count; in fm10k_set_channels()
/linux/drivers/net/ethernet/intel/ice/
H A Dice_ethtool.c3807 ch->combined_count = ice_get_combined_cnt(vsi); in ice_get_channels()
3808 ch->rx_count = vsi->num_rxq - ch->combined_count; in ice_get_channels()
3809 ch->tx_count = vsi->num_txq - ch->combined_count; in ice_get_channels()
3908 new_rx = ch->combined_count + ch->rx_count; in ice_set_channels()
3909 new_tx = ch->combined_count + ch->tx_count; in ice_set_channels()
/linux/drivers/net/ethernet/intel/iavf/
H A Diavf_ethtool.c1611 ch->combined_count = adapter->num_active_queues; in iavf_get_channels()
1627 u32 num_req = ch->combined_count; in iavf_set_channels()
/linux/drivers/net/ethernet/huawei/hinic/
H A Dhinic_ethtool.c890 channels->combined_count = hinic_hwdev_num_qps(hwdev); in hinic_get_channels()
897 unsigned int count = channels->combined_count; in hinic_set_channels()
/linux/tools/testing/selftests/bpf/
H A Dxdp_hw_metadata.c566 return ch.rx_count + ch.combined_count; in rxq_num()
/linux/include/uapi/linux/
H A Dethtool.h561 __u32 combined_count; member

12