Commit d0fb1c7b authored by Shahed Shaikh's avatar Shahed Shaikh Committed by Kleber Sacilotto de Souza

bnx2x: Ignore bandwidth attention in single function mode

BugLink: https://bugs.launchpad.net/bugs/1853881

[ Upstream commit 75a110a1 ]

This is a workaround for FW bug -
MFW generates bandwidth attention in single function mode, which
is only expected to be generated in multi function mode.
This undesired attention in SF mode results in incorrect HW
configuration and resulting into Tx timeout.
Signed-off-by: default avatarShahed Shaikh <Shahed.Shaikh@cavium.com>
Signed-off-by: default avatarAriel Elior <ariel.elior@cavium.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarConnor Kuehl <connor.kuehl@canonical.com>
Signed-off-by: default avatarKhalid Elmously <khalid.elmously@canonical.com>
parent f619c284
......@@ -3532,6 +3532,16 @@ static void bnx2x_drv_info_iscsi_stat(struct bnx2x *bp)
*/
static void bnx2x_config_mf_bw(struct bnx2x *bp)
{
/* Workaround for MFW bug.
* MFW is not supposed to generate BW attention in
* single function mode.
*/
if (!IS_MF(bp)) {
DP(BNX2X_MSG_MCP,
"Ignoring MF BW config in single function mode\n");
return;
}
if (bp->link_vars.link_up) {
bnx2x_cmng_fns_init(bp, true, CMNG_FNS_MINMAX);
bnx2x_link_sync_notify(bp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment