* iavf_vf_reset * @hw: pointer to the hardware structure * * Send a VF_RESET message to the PF. Does not wait for response from PF * as none will be forthcoming. Immediately after calling this function, * the admin queue should be shut down and (optionally) reinitialized. **/
| 1001 | * the admin queue should be shut down and (optionally) reinitialized. |
| 1002 | **/ |
| 1003 | enum iavf_status iavf_vf_reset(struct iavf_hw *hw) |
| 1004 | { |
| 1005 | return iavf_aq_send_msg_to_pf(hw, VIRTCHNL_OP_RESET_VF, |
| 1006 | IAVF_SUCCESS, NULL, 0, NULL); |
| 1007 | } |
| 1008 | |
| 1009 | /** |
| 1010 | * iavf_aq_clear_all_wol_filters |
no test coverage detected