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

Commit 0599863d authored by Vasundhara Volam's avatar Vasundhara Volam Committed by David S. Miller
Browse files

be2net: call ENABLE_VF cmd for Skyhawk-R too



This cmd needs to be sent to FW when enabling VFs (currently used only
for Lancer.) Also, avoid calling the cmd when driver loads and finds that
VFs are already enabled from a previous load.

Signed-off-by: default avatarVasundhara Volam <vasundhara.volam@emulex.com>
Signed-off-by: default avatarSathya Perla <sathya.perla@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 30f3fe45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3511,7 +3511,7 @@ int be_cmd_enable_vf(struct be_adapter *adapter, u8 domain)
	struct be_cmd_enable_disable_vf *req;
	int status;

	if (!lancer_chip(adapter))
	if (BEx_chip(adapter))
		return 0;

	spin_lock_bh(&adapter->mcc_lock);
+2 −1
Original line number Diff line number Diff line
@@ -2923,6 +2923,7 @@ static int be_vf_setup(struct be_adapter *adapter)
			goto err;
		vf_cfg->def_vid = def_vlan;

		if (!old_vfs)
			be_cmd_enable_vf(adapter, vf + 1);
	}