Home
last modified time | relevance | path

Searched refs:pfc_queue_conf (Results 1 – 4 of 4) sorted by relevance

/dpdk/lib/ethdev/
H A Drte_ethdev.c3684 (pfc_queue_conf->mode == RTE_ETH_FC_FULL)) { in validate_rx_pause_config()
3688 pfc_queue_conf->rx_pause.tx_qid, in validate_rx_pause_config()
3693 if (pfc_queue_conf->rx_pause.tc >= tc_max) { in validate_rx_pause_config()
3696 pfc_queue_conf->rx_pause.tc, tc_max); in validate_rx_pause_config()
3713 pfc_queue_conf->tx_pause.rx_qid, in validate_tx_pause_config()
3718 if (pfc_queue_conf->tx_pause.tc >= tc_max) { in validate_tx_pause_config()
3721 pfc_queue_conf->tx_pause.tc, tc_max); in validate_tx_pause_config()
3762 if (pfc_queue_conf == NULL) { in rte_eth_dev_priority_flow_ctrl_queue_configure()
3801 pfc_queue_conf); in rte_eth_dev_priority_flow_ctrl_queue_configure()
3810 pfc_queue_conf); in rte_eth_dev_priority_flow_ctrl_queue_configure()
[all …]
H A Dethdev_driver.h550 struct rte_eth_pfc_queue_conf *pfc_queue_conf);
H A Drte_ethdev.h4262 struct rte_eth_pfc_queue_conf *pfc_queue_conf);
/dpdk/app/test-pmd/
H A Dcmdline.c7730 struct rte_eth_pfc_queue_conf pfc_queue_conf; in cmd_queue_priority_flow_ctrl_set_parsed() local
7746 memset(&pfc_queue_conf, 0, sizeof(struct rte_eth_pfc_queue_conf)); in cmd_queue_priority_flow_ctrl_set_parsed()
7749 pfc_queue_conf.mode = rx_tx_onoff_2_mode[rx_fc_enable][tx_fc_enable]; in cmd_queue_priority_flow_ctrl_set_parsed()
7750 pfc_queue_conf.rx_pause.tc = res->tx_tc; in cmd_queue_priority_flow_ctrl_set_parsed()
7751 pfc_queue_conf.rx_pause.tx_qid = res->tx_qid; in cmd_queue_priority_flow_ctrl_set_parsed()
7752 pfc_queue_conf.tx_pause.tc = res->rx_tc; in cmd_queue_priority_flow_ctrl_set_parsed()
7753 pfc_queue_conf.tx_pause.rx_qid = res->rx_qid; in cmd_queue_priority_flow_ctrl_set_parsed()
7754 pfc_queue_conf.tx_pause.pause_time = res->pause_time; in cmd_queue_priority_flow_ctrl_set_parsed()
7757 &pfc_queue_conf); in cmd_queue_priority_flow_ctrl_set_parsed()