Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit adaf3560 authored by Mitch Williams's avatar Mitch Williams Committed by Jeff Kirsher
Browse files

i40e: fix error return



If the VF asks to add an invalid MAC address, tell it that instead of
just using a generic return code.

Change-Id: I366aff5449fa5874ad51e2734cac2a71783ab14b
Signed-off-by: default avatarMitch Williams <mitch.a.williams@intel.com>
Signed-off-by: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: default avatarKavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent fda972f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1340,7 +1340,7 @@ static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
		    is_zero_ether_addr(al->list[i].addr)) {
		    is_zero_ether_addr(al->list[i].addr)) {
			dev_err(&pf->pdev->dev, "invalid VF MAC addr %pMAC\n",
			dev_err(&pf->pdev->dev, "invalid VF MAC addr %pMAC\n",
				al->list[i].addr);
				al->list[i].addr);
			aq_ret = I40E_ERR_PARAM;
			aq_ret = I40E_ERR_INVALID_MAC_ADDR;
			goto error_param;
			goto error_param;
		}
		}
	}
	}