Commit 8702ed0b authored by Dan Carpenter's avatar Dan Carpenter Committed by Tony Nguyen
Browse files

ice: fix an error code in ice_ena_vfs()



Return the error code if ice_eswitch_configure() fails.  Don't return
success.

Fixes: 1c54c839 ("ice: enable/disable switchdev when managing VFs")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent 6f332353
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2015,7 +2015,8 @@ static int ice_ena_vfs(struct ice_pf *pf, u16 num_vfs)

	clear_bit(ICE_VF_DIS, pf->state);

	if (ice_eswitch_configure(pf))
	ret = ice_eswitch_configure(pf);
	if (ret)
		goto err_unroll_sriov;

	return 0;