/linux-6.6.21/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 | 801 u64 tx_max, struct netlink_ext_ack *extack) in mlx5_esw_devlink_rate_leaf_tx_max_set() argument 811 err = esw_qos_devlink_rate_to_mbps(vport->dev, "tx_max", &tx_max, extack); in mlx5_esw_devlink_rate_leaf_tx_max_set() 820 err = esw_qos_set_vport_max_rate(esw, vport, tx_max, extack); in mlx5_esw_devlink_rate_leaf_tx_max_set() 845 u64 tx_max, struct netlink_ext_ack *extack) in mlx5_esw_devlink_rate_node_tx_max_set() argument 852 err = esw_qos_devlink_rate_to_mbps(dev, "tx_max", &tx_max, extack); in mlx5_esw_devlink_rate_node_tx_max_set() 857 err = esw_qos_set_group_max_rate(esw, group, tx_max, extack); in mlx5_esw_devlink_rate_node_tx_max_set()
|
/linux-6.6.21/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 | 288 tx_max, tx_priority and tx_weight to each node in a tree. So effectively 316 * - ``tx_max`` 325 It specifies an absolute BW. While tx_max defines the maximum
|
D | devlink-port.rst | 365 ``tx_max`` 385 to all node children limits. ``tx_max`` is an upper limit for children.
|
/linux-6.6.21/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.6.21/drivers/net/can/ |
D | xilinx_can.c | 211 unsigned int tx_max; member 633 can_put_echo_skb(skb, ndev, priv->tx_head % priv->tx_max, 0); in xcan_write_frame() 695 if (priv->tx_max > 1) in xcan_start_xmit_fifo() 699 if ((priv->tx_head - priv->tx_tail) == priv->tx_max) in xcan_start_xmit_fifo() 1300 WARN_ON(frames_in_fifo > priv->tx_max); in xcan_tx_interrupt() 1330 priv->tx_max, NULL); in xcan_tx_interrupt() 1733 int rx_max, tx_max; in xcan_probe() local 1787 tx_max = min(hw_tx_max, 2U); in xcan_probe() 1789 tx_max = 1; in xcan_probe() 1794 ndev = alloc_candev(sizeof(struct xcan_priv), tx_max); in xcan_probe() [all …]
|
/linux-6.6.21/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.6.21/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.6.21/drivers/net/netdevsim/ |
D | dev.c | 1189 u64 tx_max, struct netlink_ext_ack *extack) in nsim_leaf_tx_max_set() argument 1196 err = nsim_rate_bytes_to_units("tx_max", &tx_max, extack); in nsim_leaf_tx_max_set() 1200 nsim_dev->vfconfigs[vf_id].max_tx_rate = tx_max; in nsim_leaf_tx_max_set() 1209 u16 tx_max; member 1227 u64 tx_max, struct netlink_ext_ack *extack) in nsim_node_tx_max_set() argument 1232 err = nsim_rate_bytes_to_units("tx_max", &tx_max, extack); in nsim_node_tx_max_set() 1236 nsim_node->tx_max = tx_max; in nsim_node_tx_max_set() 1258 debugfs_create_u16("tx_max", 0400, nsim_node->ddir, &nsim_node->tx_max); in nsim_rate_node_new()
|
/linux-6.6.21/drivers/net/ethernet/intel/ice/ |
D | ice_devlink.c | 906 node->tx_max = div_u64(bw, 125); in ice_set_object_tx_max() 907 status = ice_sched_set_node_bw_lmt(pi, node, ICE_MAX_BW, node->tx_max); in ice_set_object_tx_max() 1035 u64 tx_max, struct netlink_ext_ack *extack) in ice_devlink_rate_leaf_tx_max_set() argument 1046 node, tx_max, extack); in ice_devlink_rate_leaf_tx_max_set() 1095 u64 tx_max, struct netlink_ext_ack *extack) in ice_devlink_rate_node_tx_max_set() argument 1106 node, tx_max, extack); in ice_devlink_rate_node_tx_max_set() 1204 if (devlink_rate->tx_max) in ice_devlink_set_parent() 1205 ice_set_object_tx_max(pi, node, devlink_rate->tx_max, extack); in ice_devlink_set_parent()
|
D | ice_type.h | 531 u64 tx_max; member
|
/linux-6.6.21/include/linux/usb/ |
D | cdc_ncm.h | 130 u32 tx_max; member
|
/linux-6.6.21/tools/net/ynl/generated/ |
D | ethtool-user.h | 1990 __u32 tx_max:1; member 2008 __u32 tx_max; member 2103 __u32 tx_max:1; member 2121 __u32 tx_max; member 2190 __u32 tx_max) in ethtool_rings_set_req_set_tx_max() argument 2192 req->_present.tx_max = 1; in ethtool_rings_set_req_set_tx_max() 2193 req->tx_max = tx_max; in ethtool_rings_set_req_set_tx_max() 2324 __u32 tx_max:1; member 2335 __u32 tx_max; member 2424 __u32 tx_max:1; member [all …]
|
/linux-6.6.21/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.6.21/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 | 1496 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
|
/linux-6.6.21/tools/testing/selftests/drivers/net/netdevsim/ |
D | devlink.sh | 640 rate_attr_tx_rate_check $r_obj tx_max $rate \ 659 rate_attr_tx_rate_check $node1 tx_max $node_tx_max \
|
/linux-6.6.21/net/devlink/ |
D | rate.c | 116 devlink_rate->tx_max, DEVLINK_ATTR_PAD)) in devlink_nl_rate_fill() 353 devlink_rate->tx_max = rate; in devlink_nl_rate_set()
|
/linux-6.6.21/include/net/ |
D | devlink.h | 107 u64 tx_max; member 1463 u64 tx_max, struct netlink_ext_ack *extack); 1471 u64 tx_max, struct netlink_ext_ack *extack);
|
/linux-6.6.21/net/mac80211/ |
D | trace.h | 1337 TP_PROTO(struct ieee80211_local *local, u32 *tx, u32 *tx_max, 1340 TP_ARGS(local, tx, tx_max, rx, rx_max), 1345 __field(u32, tx_max) 1353 __entry->tx_max = *tx_max; 1361 __entry->tx, __entry->tx_max, __entry->rx, __entry->rx_max
|
D | driver-ops.h | 757 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max) in drv_get_ringparam() argument 761 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max); in drv_get_ringparam() 763 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max); in drv_get_ringparam()
|
/linux-6.6.21/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.6.21/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
D | chcr_ktls.c | 2005 u32 tx_max = tcp_seq; in chcr_ktls_xmit() local 2009 tx_max = record->end_seq - in chcr_ktls_xmit() 2012 ret = chcr_ktls_xmit_tcb_cpls(tx_info, q, tx_max, in chcr_ktls_xmit()
|
/linux-6.6.21/net/wireless/ |
D | trace.h | 1726 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 tx_max, 1728 TP_ARGS(wiphy, tx, tx_max, rx, rx_max), 1732 __field(u32, tx_max) 1739 __entry->tx_max = tx_max; 1744 WIPHY_PR_ARG, __entry->tx, __entry->tx_max, __entry->rx,
|