Lines Matching defs:msgbuf
21 u32 msgbuf[IXGBE_VFMAILBOX_SIZE] = { 0 };
27 sam = (struct sa_mbx_msg *)(&msgbuf[1]);
39 msgbuf[0] = IXGBE_VF_IPSEC_ADD;
43 ret = ixgbevf_write_mbx(hw, msgbuf, IXGBE_VFMAILBOX_SIZE);
47 ret = ixgbevf_poll_mbx(hw, msgbuf, 2);
51 ret = (int)msgbuf[1];
52 if (msgbuf[0] & IXGBE_VT_MSGTYPE_FAILURE && ret >= 0)
71 u32 msgbuf[2];
74 memset(msgbuf, 0, sizeof(msgbuf));
75 msgbuf[0] = IXGBE_VF_IPSEC_DEL;
76 msgbuf[1] = (u32)pfsa;
80 err = ixgbevf_write_mbx(hw, msgbuf, 2);
84 err = ixgbevf_poll_mbx(hw, msgbuf, 2);