Skip to content
Snippets Groups Projects
Commit 0cca97c7 authored by Adrian Bunk's avatar Adrian Bunk Committed by Greg Kroah-Hartman
Browse files

bnx2x: Fix enabling network interfaces without VFs


commit 52ce14c1 upstream.

This function is called to enable SR-IOV when available,
not enabling interfaces without VFs was a regression.

Fixes: 65161c35 ("bnx2x: Fix missing error code in bnx2x_iov_init_one()")
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Reported-by: default avatarYunQiang Su <wzssyqa@gmail.com>
Tested-by: default avatarYunQiang Su <wzssyqa@gmail.com>
Cc: stable@vger.kernel.org
Acked-by: default avatarShai Malin <smalin@marvell.com>
Link: https://lore.kernel.org/r/20210912190523.27991-1-bunk@kernel.org


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7d949dc3
No related branches found
No related tags found
No related merge requests found
...@@ -1246,7 +1246,7 @@ int bnx2x_iov_init_one(struct bnx2x *bp, int int_mode_param, ...@@ -1246,7 +1246,7 @@ int bnx2x_iov_init_one(struct bnx2x *bp, int int_mode_param,
/* SR-IOV capability was enabled but there are no VFs*/ /* SR-IOV capability was enabled but there are no VFs*/
if (iov->total == 0) { if (iov->total == 0) {
err = -EINVAL; err = 0;
goto failed; goto failed;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment