qed: Correct PF-sanity check
Seems like something broke in commit 1408cc1fa4
("qed: Introduce VFs")
and the function no longer verifies that the vf is indeed a valid one.
Signed-off-by: Yuval Mintz <Yuval.Mintz@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2bb07e155b
commit
b0409fa094
@ -476,12 +476,12 @@ int qed_iov_hw_info(struct qed_hwfn *p_hwfn)
|
|||||||
static bool qed_iov_pf_sanity_check(struct qed_hwfn *p_hwfn, int vfid)
|
static bool qed_iov_pf_sanity_check(struct qed_hwfn *p_hwfn, int vfid)
|
||||||
{
|
{
|
||||||
/* Check PF supports sriov */
|
/* Check PF supports sriov */
|
||||||
if (!IS_QED_SRIOV(p_hwfn->cdev) || !IS_PF_SRIOV_ALLOC(p_hwfn))
|
if (IS_VF(p_hwfn->cdev) || !IS_QED_SRIOV(p_hwfn->cdev) ||
|
||||||
|
!IS_PF_SRIOV_ALLOC(p_hwfn))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
/* Check VF validity */
|
/* Check VF validity */
|
||||||
if (IS_VF(p_hwfn->cdev) || !IS_QED_SRIOV(p_hwfn->cdev) ||
|
if (!qed_iov_is_valid_vfid(p_hwfn, vfid, true))
|
||||||
!IS_PF_SRIOV_ALLOC(p_hwfn))
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user