MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ixgbe_check_for_ack

Function ixgbe_check_for_ack

dpdk/drivers/net/ixgbe/base/ixgbe_mbx.c:87–98  ·  view source on GitHub ↗

* ixgbe_check_for_ack - checks to see if someone sent us ACK * @hw: pointer to the HW structure * @mbx_id: id of mailbox to check * * returns SUCCESS if the Status bit was found or else ERR_MBX **/

Source from the content-addressed store, hash-verified

85 * returns SUCCESS if the Status bit was found or else ERR_MBX
86 **/
87s32 ixgbe_check_for_ack(struct ixgbe_hw *hw, u16 mbx_id)
88{
89 struct ixgbe_mbx_info *mbx = &hw->mbx;
90 s32 ret_val = IXGBE_ERR_MBX;
91
92 DEBUGFUNC("ixgbe_check_for_ack");
93
94 if (mbx->ops.check_for_ack)
95 ret_val = mbx->ops.check_for_ack(hw, mbx_id);
96
97 return ret_val;
98}
99
100/**
101 * ixgbe_check_for_rst - checks to see if other side has reset

Callers 1

ixgbe_pf_mbx_processFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected