* @vf: pointer to the VF structure
  * @is_vflr: true if VFLR was issued, false if not
  *
- * Returns true if the VF is currently in reset, resets successfully, or resets
- * are disabled and false otherwise.
+ * Returns 0 if the VF is currently in reset, if the resets are disabled, or
+ * if the VF resets successfully. Returns an error code if the VF fails to
+ * rebuild.
  */
-bool ice_reset_vf(struct ice_vf *vf, bool is_vflr)
+int ice_reset_vf(struct ice_vf *vf, bool is_vflr)
 {
        struct ice_pf *pf = vf->pf;
        struct ice_vsi *vsi;
        if (test_bit(ICE_VF_RESETS_DISABLED, pf->state)) {
                dev_dbg(dev, "Trying to reset VF %d, but all VF resets are disabled\n",
                        vf->vf_id);
-               return true;
+               return 0;
        }
 
        if (ice_is_vf_disabled(vf)) {
                dev_dbg(dev, "VF is already disabled, there is no need for resetting it, telling VM, all is fine %d\n",
                        vf->vf_id);
-               return true;
+               return 0;
        }
 
        /* Set VF disable bit state here, before triggering reset */
        if (vf->vf_ops->vsi_rebuild(vf)) {
                dev_err(dev, "Failed to release and setup the VF%u's VSI\n",
                        vf->vf_id);
-               return false;
+               return -EFAULT;
        }
 
        vf->vf_ops->post_vsi_rebuild(vf);
                dev_dbg(dev, "failed to clear malicious VF state for VF %u\n",
                        vf->vf_id);
 
-       return true;
+       return 0;
 }
 
 /**
 
 ice_vf_set_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m);
 int
 ice_vf_clear_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m);
-bool ice_reset_vf(struct ice_vf *vf, bool is_vflr);
+int ice_reset_vf(struct ice_vf *vf, bool is_vflr);
 void ice_reset_all_vfs(struct ice_pf *pf);
 #else /* CONFIG_PCI_IOV */
 static inline struct ice_vf *ice_get_vf_by_id(struct ice_pf *pf, u16 vf_id)
        return -EOPNOTSUPP;
 }
 
-static inline bool ice_reset_vf(struct ice_vf *vf, bool is_vflr)
+static inline int ice_reset_vf(struct ice_vf *vf, bool is_vflr)
 {
-       return true;
+       return 0;
 }
 
 static inline void ice_reset_all_vfs(struct ice_pf *pf)