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

Function ixgbe_check_for_msg

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

* ixgbe_check_for_msg - checks to see if someone sent us mail * @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

65 * returns SUCCESS if the Status bit was found or else ERR_MBX
66 **/
67s32 ixgbe_check_for_msg(struct ixgbe_hw *hw, u16 mbx_id)
68{
69 struct ixgbe_mbx_info *mbx = &hw->mbx;
70 s32 ret_val = IXGBE_ERR_MBX;
71
72 DEBUGFUNC("ixgbe_check_for_msg");
73
74 if (mbx->ops.check_for_msg)
75 ret_val = mbx->ops.check_for_msg(hw, mbx_id);
76
77 return ret_val;
78}
79
80/**
81 * ixgbe_check_for_ack - checks to see if someone sent us ACK

Callers 1

ixgbe_pf_mbx_processFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected