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

Commit 8a046d3b authored by Vasundhara Volam's avatar Vasundhara Volam Committed by David S. Miller
Browse files

be2net: fix FW default for VF tx-rate



BE3 FW initializes VF tx-rate to 100Mbps. Fix this to 10Gbps.

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 7c5a5242
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2645,8 +2645,8 @@ static int be_vf_setup(struct be_adapter *adapter)
	}

	for_all_vfs(adapter, vf_cfg, vf) {
		status = be_cmd_link_status_query(adapter, NULL, &lnk_speed,
						  NULL, vf + 1);
		lnk_speed = 1000;
		status = be_cmd_set_qos(adapter, lnk_speed, vf + 1);
		if (status)
			goto err;
		vf_cfg->tx_rate = lnk_speed * 10;