|
@@ -3138,9 +3138,10 @@ qed_iov_vf_flr_cleanup(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
|
|
|
return rc;
|
|
|
}
|
|
|
|
|
|
-int qed_iov_mark_vf_flr(struct qed_hwfn *p_hwfn, u32 *p_disabled_vfs)
|
|
|
+bool qed_iov_mark_vf_flr(struct qed_hwfn *p_hwfn, u32 *p_disabled_vfs)
|
|
|
{
|
|
|
- u16 i, found = 0;
|
|
|
+ bool found = false;
|
|
|
+ u16 i;
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV, "Marking FLR-ed VFs\n");
|
|
|
for (i = 0; i < (VF_MAX_STATIC / 32); i++)
|
|
@@ -3150,7 +3151,7 @@ int qed_iov_mark_vf_flr(struct qed_hwfn *p_hwfn, u32 *p_disabled_vfs)
|
|
|
|
|
|
if (!p_hwfn->cdev->p_iov_info) {
|
|
|
DP_NOTICE(p_hwfn, "VF flr but no IOV\n");
|
|
|
- return 0;
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
/* Mark VFs */
|
|
@@ -3179,7 +3180,7 @@ int qed_iov_mark_vf_flr(struct qed_hwfn *p_hwfn, u32 *p_disabled_vfs)
|
|
|
* VF flr until ACKs, we're safe.
|
|
|
*/
|
|
|
p_flr[rel_vf_id / 64] |= 1ULL << (rel_vf_id % 64);
|
|
|
- found = 1;
|
|
|
+ found = true;
|
|
|
}
|
|
|
}
|
|
|
|