Home
last modified time | relevance | path

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

/dpdk/drivers/net/hns3/
H A Dhns3_ethdev_vf.c1671 rte_free(hw->reset.wait_data); in hns3vf_dev_close()
1875 struct hns3_wait_data *wait_data = hw->reset.wait_data; in hns3vf_wait_hardware_ready() local
1890 if (wait_data->check_completion == NULL) in hns3vf_wait_hardware_ready()
1893 wait_data->check_completion = NULL; in hns3vf_wait_hardware_ready()
1896 wait_data->count = 1; in hns3vf_wait_hardware_ready()
1897 wait_data->result = HNS3_WAIT_REQUEST; in hns3vf_wait_hardware_ready()
1899 wait_data); in hns3vf_wait_hardware_ready()
1911 wait_data->hns = hns; in hns3vf_wait_hardware_ready()
1917 wait_data->result = HNS3_WAIT_REQUEST; in hns3vf_wait_hardware_ready()
1918 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback, wait_data); in hns3vf_wait_hardware_ready()
[all …]
H A Dhns3_intr.c2391 hw->reset.wait_data = rte_zmalloc("wait_data", in hns3_reset_init()
2393 if (!hw->reset.wait_data) { in hns3_reset_init()
2508 hw->reset.wait_data->hns = hns; in hns3_reset_req_hw_reset()
2509 hw->reset.wait_data->check_completion = NULL; in hns3_reset_req_hw_reset()
2511 hw->reset.wait_data->count = 1; in hns3_reset_req_hw_reset()
2512 hw->reset.wait_data->result = HNS3_WAIT_REQUEST; in hns3_reset_req_hw_reset()
2513 rte_eal_alarm_set(hw->reset.wait_data->interval, in hns3_reset_req_hw_reset()
2514 hns3_wait_callback, hw->reset.wait_data); in hns3_reset_req_hw_reset()
2671 hw->reset.wait_data->result = HNS3_WAIT_UNKNOWN; in hns3_reset_pre()
2838 hw->reset.wait_data); in hns3_reset_process()
[all …]
H A Dhns3_ethdev.c5251 rte_free(hw->reset.wait_data); in hns3_dev_close()
5626 struct hns3_wait_data *wait_data = hw->reset.wait_data; in hns3_wait_hardware_ready() local
5629 if (wait_data->result == HNS3_WAIT_SUCCESS) in hns3_wait_hardware_ready()
5631 else if (wait_data->result == HNS3_WAIT_TIMEOUT) { in hns3_wait_hardware_ready()
5636 } else if (wait_data->result == HNS3_WAIT_REQUEST) in hns3_wait_hardware_ready()
5639 wait_data->hns = hns; in hns3_wait_hardware_ready()
5640 wait_data->check_completion = is_pf_reset_done; in hns3_wait_hardware_ready()
5644 wait_data->count = HNS3_RESET_WAIT_CNT; in hns3_wait_hardware_ready()
5645 wait_data->result = HNS3_WAIT_REQUEST; in hns3_wait_hardware_ready()
5646 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback, wait_data); in hns3_wait_hardware_ready()
[all …]
H A Dhns3_ethdev.h425 struct hns3_wait_data *wait_data; member