Home
last modified time | relevance | path

Searched refs:tx_copybreak (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.15/drivers/net/ethernet/hisilicon/hns3/
Dhns3_enet.h484 u32 tx_copybreak; member
584 u32 tx_copybreak; member
Dhns3_ethtool.c1701 *(u32 *)data = priv->tx_copybreak; in hns3_get_tunable()
1724 priv->tx_copybreak = *(u32 *)data; in hns3_set_tunable()
1727 priv->ring[i].tx_copybreak = priv->tx_copybreak; in hns3_set_tunable()
Dhns3_enet.c1001 u32 len = skb->len <= ring->tx_copybreak ? skb->len : in hns3_can_use_tx_bounce()
1004 if (len > ring->tx_copybreak) in hns3_can_use_tx_bounce()
1021 if (skb->len <= ring->tx_copybreak || !tx_sgl || in hns3_can_use_tx_sgl()
2054 if (skb->len <= ring->tx_copybreak) { in hns3_handle_tx_bounce()
4672 ring->tx_copybreak = priv->tx_copybreak; in hns3_ring_get_cfg()
Dhns3_debugfs.c444 sprintf(result[j++], "%9u", ring->tx_copybreak); in hns3_dbg_tx_spare_info()
/Linux-v5.15/drivers/net/ethernet/ibm/
Dibmveth.c57 static unsigned int tx_copybreak __read_mostly = 128;
58 module_param(tx_copybreak, uint, 0644);
59 MODULE_PARM_DESC(tx_copybreak,
1107 (skb->len < tx_copybreak))) { in ibmveth_start_xmit()