diff options
author | Yuval Mintz <yuvalmin@broadcom.com> | 2013-08-19 02:11:59 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-20 03:21:47 -0400 |
commit | aeeddb8b9e76d1f250d58b40e8dba8614d61368b (patch) | |
tree | 970c54397e427b871bbb7e4b7af245a7bb8eb920 | |
parent | 79b17a9493a79923cc1af4da64e1c4931273f0f5 (diff) |
bnx2x: prevent VF benign attentions
During probe, VFs might erroneously try to access the shared memory (which
only PFs are capabale of accessing), causing benign attentions to appear.
Signed-off-by: Yuval Mintz <yuvalmin@broadcom.com>
Signed-off-by: Ariel Elior <ariele@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c index b8d7c3ba685e..8bdc8b973007 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | |||
@@ -11163,6 +11163,9 @@ static bool bnx2x_get_dropless_info(struct bnx2x *bp) | |||
11163 | int tmp; | 11163 | int tmp; |
11164 | u32 cfg; | 11164 | u32 cfg; |
11165 | 11165 | ||
11166 | if (IS_VF(bp)) | ||
11167 | return 0; | ||
11168 | |||
11166 | if (IS_MF(bp) && !CHIP_IS_E1x(bp)) { | 11169 | if (IS_MF(bp) && !CHIP_IS_E1x(bp)) { |
11167 | /* Take function: tmp = func */ | 11170 | /* Take function: tmp = func */ |
11168 | tmp = BP_ABS_FUNC(bp); | 11171 | tmp = BP_ABS_FUNC(bp); |