Lines Matching refs:fc_conf
75 struct rte_eth_fc_conf *fc_conf);
77 struct rte_eth_fc_conf *fc_conf);
1524 atl_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf) in atl_flow_ctrl_get() argument
1535 fc_conf->mode = RTE_FC_NONE; in atl_flow_ctrl_get()
1537 fc_conf->mode = RTE_FC_FULL; in atl_flow_ctrl_get()
1539 fc_conf->mode = RTE_FC_RX_PAUSE; in atl_flow_ctrl_get()
1541 fc_conf->mode = RTE_FC_TX_PAUSE; in atl_flow_ctrl_get()
1547 atl_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf) in atl_flow_ctrl_set() argument
1556 if (fc_conf->mode == RTE_FC_NONE) in atl_flow_ctrl_set()
1558 else if (fc_conf->mode == RTE_FC_RX_PAUSE) in atl_flow_ctrl_set()
1560 else if (fc_conf->mode == RTE_FC_TX_PAUSE) in atl_flow_ctrl_set()
1562 else if (fc_conf->mode == RTE_FC_FULL) in atl_flow_ctrl_set()