Lines Matching refs:pause_param
221 struct ethtool_pauseparam *pause_param) in rte_ethtool_get_pauseparam() argument
226 if (pause_param == NULL) in rte_ethtool_get_pauseparam()
233 pause_param->tx_pause = 0; in rte_ethtool_get_pauseparam()
234 pause_param->rx_pause = 0; in rte_ethtool_get_pauseparam()
237 pause_param->rx_pause = 1; in rte_ethtool_get_pauseparam()
240 pause_param->tx_pause = 1; in rte_ethtool_get_pauseparam()
243 pause_param->rx_pause = 1; in rte_ethtool_get_pauseparam()
244 pause_param->tx_pause = 1; in rte_ethtool_get_pauseparam()
249 pause_param->autoneg = (uint32_t)fc_conf.autoneg; in rte_ethtool_get_pauseparam()
256 struct ethtool_pauseparam *pause_param) in rte_ethtool_set_pauseparam() argument
261 if (pause_param == NULL) in rte_ethtool_set_pauseparam()
276 fc_conf.autoneg = (uint8_t)pause_param->autoneg; in rte_ethtool_set_pauseparam()
278 if (pause_param->tx_pause) { in rte_ethtool_set_pauseparam()
279 if (pause_param->rx_pause) in rte_ethtool_set_pauseparam()
284 if (pause_param->rx_pause) in rte_ethtool_set_pauseparam()