Home
last modified time | relevance | path

Searched refs:check_for_ack (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/dev/e1000/
H A De1000_mbx.c152 if (mbx->ops.check_for_ack) in e1000_check_for_ack()
153 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in e1000_check_for_ack()
223 if (!countdown || !mbx->ops.check_for_ack) in e1000_poll_for_ack()
226 while (countdown && mbx->ops.check_for_ack(hw, mbx_id)) { in e1000_poll_for_ack()
313 mbx->ops.check_for_ack = e1000_null_mbx_check_for_flag; in e1000_init_mbx_ops_generic()
551 mbx->ops.check_for_ack = e1000_check_for_ack_vf; in e1000_init_mbx_params_vf()
777 mbx->ops.check_for_ack = e1000_check_for_ack_pf; in e1000_init_mbx_params_pf()
H A De1000_vf.h235 s32 (*check_for_ack)(struct e1000_hw *, u16); member
H A De1000_hw.h946 s32 (*check_for_ack)(struct e1000_hw *, u16); member
/freebsd/sys/dev/ixgbe/
H A Dixgbe_mbx.c130 if (!mbx->ops[mbx_id].write || !mbx->ops[mbx_id].check_for_ack || in ixgbe_write_mbx()
179 if (mbx->ops[mbx_id].check_for_ack) in ixgbe_check_for_ack()
180 ret_val = mbx->ops[mbx_id].check_for_ack(hw, mbx_id); in ixgbe_check_for_ack()
272 if (!countdown || !mbx->ops[mbx_id].check_for_ack) in ixgbe_poll_for_ack()
275 while (countdown && mbx->ops[mbx_id].check_for_ack(hw, mbx_id)) { in ixgbe_poll_for_ack()
682 mbx->ops[0].check_for_ack = ixgbe_check_for_ack_vf; in ixgbe_init_mbx_params_vf()
713 mbx->ops[0].check_for_ack = ixgbe_check_for_ack_vf; in ixgbe_upgrade_mbx_params_vf()
1125 mbx->ops[vf_id].check_for_ack = ixgbe_check_for_ack_pf; in ixgbe_init_mbx_params_pf_id()
1201 mbx->ops[vf_id].check_for_ack = ixgbe_check_for_ack_pf; in ixgbe_upgrade_mbx_params_pf()
H A Dixgbe_mbx.h46 s32 (*check_for_ack)(struct ixgbe_hw *hw, u16 vf_number); member
H A Dif_sriov.c665 if (hw->mbx.ops[vf->pool].check_for_ack(hw, in ixgbe_handle_mbx()