mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 18:20:54 +07:00
bnx2x: VF ndo sanity
If iproute2 VF callbacks are invoked before PF is loaded, abort gracefully. Signed-off-by: Ariel Elior <ariele@broadcom.com> Signed-off-by: Yuval Mintz <yuvalmin@broadcom.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
78c3bcc5d1
commit
af902ae443
@ -3083,6 +3083,11 @@ void bnx2x_disable_sriov(struct bnx2x *bp)
|
||||
static int bnx2x_vf_ndo_sanity(struct bnx2x *bp, int vfidx,
|
||||
struct bnx2x_virtf *vf)
|
||||
{
|
||||
if (bp->state != BNX2X_STATE_OPEN) {
|
||||
BNX2X_ERR("vf ndo called though PF is down\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!IS_SRIOV(bp)) {
|
||||
BNX2X_ERR("vf ndo called though sriov is disabled\n");
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user