Home
last modified time | relevance | path

Searched refs:next_to_use (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/i40e/core/
H A Di40e_adminq.c392 hw->aq.asq.next_to_use = 0; in i40e_init_asq()
455 hw->aq.arq.next_to_use = 0; in i40e_init_arq()
559 hw->aq.asq.next_to_use = 0; in i40e_resume_aq()
564 hw->aq.arq.next_to_use = 0; in i40e_resume_aq()
825 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in i40e_asq_done()
941 dma_buff = &(hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]); in i40e_asq_send_command()
960 (hw->aq.asq.next_to_use)++; in i40e_asq_send_command()
961 if (hw->aq.asq.next_to_use == hw->aq.asq.count) in i40e_asq_send_command()
962 hw->aq.asq.next_to_use = 0; in i40e_asq_send_command()
964 wr32(hw, hw->aq.asq.tail, hw->aq.asq.next_to_use); in i40e_asq_send_command()
[all …]
H A Di40e_adminq.h61 u16 next_to_use; member
H A Di40e_type.h106 ((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
107 (R)->next_to_clean - (R)->next_to_use - 1)