/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/esw/ |
D | qos.h | 16 u64 tx_max, struct netlink_ext_ack *extack); 20 u64 tx_max, struct netlink_ext_ack *extack);
|
D | qos.c | 884 u64 tx_max, struct netlink_ext_ack *extack) in mlx5_esw_devlink_rate_leaf_tx_max_set() argument 894 err = esw_qos_devlink_rate_to_mbps(vport->dev, "tx_max", &tx_max, extack); in mlx5_esw_devlink_rate_leaf_tx_max_set() 903 err = esw_qos_set_vport_max_rate(esw, vport, tx_max, extack); in mlx5_esw_devlink_rate_leaf_tx_max_set() 928 u64 tx_max, struct netlink_ext_ack *extack) in mlx5_esw_devlink_rate_node_tx_max_set() argument 935 err = esw_qos_devlink_rate_to_mbps(dev, "tx_max", &tx_max, extack); in mlx5_esw_devlink_rate_node_tx_max_set() 940 err = esw_qos_set_group_max_rate(esw, group, tx_max, extack); in mlx5_esw_devlink_rate_node_tx_max_set()
|
/linux-6.12.1/Documentation/networking/devlink/ |
D | netdevsim.rst | 67 - setting tx_share and tx_max rate values for any rate object type; 76 rate_parent tx_max tx_share 84 dev ethtool rate_parent tx_max tx_share
|
D | ice.rst | 369 tx_max, tx_priority and tx_weight to each node in a tree. So effectively 397 * - ``tx_max`` 406 It specifies an absolute BW. While tx_max defines the maximum
|
D | devlink-port.rst | 398 ``tx_max`` 418 to all node children limits. ``tx_max`` is an upper limit for children.
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-class-net-cdc_ncm | 7 than this to tx_max, allowing the device to receive 8 tx_max sized frames with no terminating short 13 Padding to tx_max allows the driver to transmit NTBs 19 Set to 0 to pad all frames. Set greater than tx_max to 57 What: /sys/class/net/<iface>/cdc_ncm/tx_max
|
/linux-6.12.1/drivers/net/can/ |
D | xilinx_can.c | 244 unsigned int tx_max; member 695 can_put_echo_skb(skb, ndev, priv->tx_head % priv->tx_max, 0); in xcan_write_frame() 757 if (priv->tx_max > 1) in xcan_start_xmit_fifo() 761 if ((priv->tx_head - priv->tx_tail) == priv->tx_max) in xcan_start_xmit_fifo() 1410 WARN_ON(frames_in_fifo > priv->tx_max); in xcan_tx_interrupt() 1440 priv->tx_max, NULL); in xcan_tx_interrupt() 1887 int rx_max, tx_max; in xcan_probe() local 1939 tx_max = min(hw_tx_max, 2U); in xcan_probe() 1941 tx_max = 1; in xcan_probe() 1946 ndev = alloc_candev(sizeof(struct xcan_priv), tx_max); in xcan_probe() [all …]
|
/linux-6.12.1/drivers/net/usb/ |
D | cdc_ncm.c | 225 return sprintf(buf, "%u\n", ctx->tx_max); in tx_max_show() 264 cdc_ncm_update_rxtx_max(dev, val, ctx->tx_max); in rx_max_store() 308 static DEVICE_ATTR_RW(tx_max); 437 if (val != ctx->tx_max) in cdc_ncm_update_rxtx_max() 452 if (netif_running(dev->net) && val > ctx->tx_max) { in cdc_ncm_update_rxtx_max() 460 ctx->tx_max = val; in cdc_ncm_update_rxtx_max() 463 ctx->tx_max = val; in cdc_ncm_update_rxtx_max() 466 dev->hard_mtu = ctx->tx_max; in cdc_ncm_update_rxtx_max() 472 ctx->min_tx_pkt = clamp_t(u16, ctx->tx_max - 3 * usb_maxpacket(dev->udev, dev->out), in cdc_ncm_update_rxtx_max() 473 CDC_NCM_MIN_TX_PKT, ctx->tx_max); in cdc_ncm_update_rxtx_max() [all …]
|
/linux-6.12.1/sound/soc/tegra/ |
D | tegra210_admaif.c | 90 unsigned int tx_max = tx_base + (num_ch * ch_stride); in tegra_admaif_wr_reg() local 99 } else if ((reg >= tx_base) && (reg < tx_max)) { in tegra_admaif_wr_reg() 124 unsigned int tx_max = tx_base + (num_ch * ch_stride); in tegra_admaif_rd_reg() local 135 } else if ((reg >= tx_base) && (reg < tx_max)) { in tegra_admaif_rd_reg() 168 unsigned int tx_max = tx_base + (num_ch * ch_stride); in tegra_admaif_volatile_reg() local 177 } else if ((reg >= tx_base) && (reg < tx_max)) { in tegra_admaif_volatile_reg()
|
/linux-6.12.1/drivers/net/netdevsim/ |
D | dev.c | 1192 u64 tx_max, struct netlink_ext_ack *extack) in nsim_leaf_tx_max_set() argument 1199 err = nsim_rate_bytes_to_units("tx_max", &tx_max, extack); in nsim_leaf_tx_max_set() 1203 nsim_dev->vfconfigs[vf_id].max_tx_rate = tx_max; in nsim_leaf_tx_max_set() 1212 u16 tx_max; member 1230 u64 tx_max, struct netlink_ext_ack *extack) in nsim_node_tx_max_set() argument 1235 err = nsim_rate_bytes_to_units("tx_max", &tx_max, extack); in nsim_node_tx_max_set() 1239 nsim_node->tx_max = tx_max; in nsim_node_tx_max_set() 1261 debugfs_create_u16("tx_max", 0400, nsim_node->ddir, &nsim_node->tx_max); in nsim_rate_node_new()
|
/linux-6.12.1/drivers/net/ethernet/intel/ice/devlink/ |
D | devlink.c | 884 node->tx_max = div_u64(bw, 125); in ice_set_object_tx_max() 885 status = ice_sched_set_node_bw_lmt(pi, node, ICE_MAX_BW, node->tx_max); in ice_set_object_tx_max() 1013 u64 tx_max, struct netlink_ext_ack *extack) in ice_devlink_rate_leaf_tx_max_set() argument 1024 node, tx_max, extack); in ice_devlink_rate_leaf_tx_max_set() 1073 u64 tx_max, struct netlink_ext_ack *extack) in ice_devlink_rate_node_tx_max_set() argument 1084 node, tx_max, extack); in ice_devlink_rate_node_tx_max_set() 1182 if (devlink_rate->tx_max) in ice_devlink_set_parent() 1183 ice_set_object_tx_max(pi, node, devlink_rate->tx_max, extack); in ice_devlink_set_parent()
|
/linux-6.12.1/include/linux/usb/ |
D | cdc_ncm.h | 130 u32 tx_max; member
|
/linux-6.12.1/drivers/net/wireless/ath/ath5k/ |
D | mac80211-ops.c | 741 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max) in ath5k_get_ringparam() argument 747 *tx_max = ATH5K_TXQ_LEN_MAX; in ath5k_get_ringparam()
|
/linux-6.12.1/tools/testing/selftests/drivers/net/netdevsim/ |
D | devlink.sh | 647 rate_attr_tx_rate_check $r_obj tx_max $rate \ 666 rate_attr_tx_rate_check $node1 tx_max $node_tx_max \
|
/linux-6.12.1/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00mac.c | 811 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max) in rt2x00mac_get_ringparam() argument 818 *tx_max += queue->limit; in rt2x00mac_get_ringparam()
|
D | rt2x00.h | 1495 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
|
/linux-6.12.1/net/devlink/ |
D | rate.c | 116 devlink_rate->tx_max, DEVLINK_ATTR_PAD)) in devlink_nl_rate_fill() 352 devlink_rate->tx_max = rate; in devlink_nl_rate_set()
|
/linux-6.12.1/include/net/ |
D | devlink.h | 107 u64 tx_max; member 1467 u64 tx_max, struct netlink_ext_ack *extack); 1475 u64 tx_max, struct netlink_ext_ack *extack);
|
/linux-6.12.1/net/mac80211/ |
D | trace.h | 1380 TP_PROTO(struct ieee80211_local *local, u32 *tx, u32 *tx_max, 1383 TP_ARGS(local, tx, tx_max, rx, rx_max), 1388 __field(u32, tx_max) 1396 __entry->tx_max = *tx_max; 1404 __entry->tx, __entry->tx_max, __entry->rx, __entry->rx_max
|
D | driver-ops.h | 822 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max) in drv_get_ringparam() argument 827 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max); in drv_get_ringparam() 829 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max); in drv_get_ringparam()
|
/linux-6.12.1/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | sdio.c | 452 u8 tx_max; /* Maximum transmit sequence allowed */ member 684 return (bus->tx_max - bus->tx_seq - tx_rsv) != 0 && in data_ok() 685 ((bus->tx_max - bus->tx_seq - tx_rsv) & 0x80) == 0; in data_ok() 692 return (bus->tx_max - bus->tx_seq) != 0 && in txctl_ok() 693 ((bus->tx_max - bus->tx_seq) & 0x80) == 0; in txctl_ok() 1475 bus->tx_max = tx_seq_max; in brcmf_sdio_hdparse() 2348 pkt_num = min_t(u8, bus->tx_max - bus->tx_seq, in brcmf_sdio_sendfromq()
|
/linux-6.12.1/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
D | chcr_ktls.c | 2001 u32 tx_max = tcp_seq; in chcr_ktls_xmit() local 2005 tx_max = record->end_seq - in chcr_ktls_xmit() 2008 ret = chcr_ktls_xmit_tcb_cpls(tx_info, q, tx_max, in chcr_ktls_xmit()
|
/linux-6.12.1/net/wireless/ |
D | trace.h | 1824 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 tx_max, 1826 TP_ARGS(wiphy, tx, tx_max, rx, rx_max), 1830 __field(u32, tx_max) 1837 __entry->tx_max = tx_max; 1842 WIPHY_PR_ARG, __entry->tx, __entry->tx_max, __entry->rx,
|
/linux-6.12.1/drivers/net/ethernet/intel/ice/ |
D | ice_type.h | 569 u64 tx_max; member
|
/linux-6.12.1/drivers/net/ethernet/pensando/ionic/ |
D | ionic_lif.c | 2490 int tx_min, int tx_max) in ionic_set_vf_rate() argument 2509 vfc.maxrate = cpu_to_le32(tx_max); in ionic_set_vf_rate() 2515 ionic->vfs[vf].maxrate = cpu_to_le32(tx_max); in ionic_set_vf_rate()
|