diff options
author | Sudarsana Reddy Kalluru <sudarsana.kalluru@cavium.com> | 2018-07-18 22:50:03 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-21 16:19:04 -0700 |
commit | 58874c7b246109d8efb2b0099d1aa296d6bfc3fa (patch) | |
tree | d0d70a87e75d0fae4f91c8ab573d71bbb9913836 /drivers/net/ethernet/qlogic | |
parent | 4ad95a93a702ec4f4fb5159b822797ba67b8cbbe (diff) | |
download | talos-obmc-linux-58874c7b246109d8efb2b0099d1aa296d6bfc3fa.tar.gz talos-obmc-linux-58874c7b246109d8efb2b0099d1aa296d6bfc3fa.zip |
qed: Fix possible race for the link state value.
There's a possible race where driver can read link status in mid-transition
and see that virtual-link is up yet speed is 0. Since in this
mid-transition we're guaranteed to see a mailbox from MFW soon, we can
afford to treat this as link down.
Fixes: cc875c2e ("qed: Add link support")
Signed-off-by: Sudarsana Reddy Kalluru <Sudarsana.Kalluru@cavium.com>
Signed-off-by: Ariel Elior <ariel.elior@cavium.com>
Signed-off-by: Michal Kalderon <Michal.Kalderon@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/qlogic')
-rw-r--r-- | drivers/net/ethernet/qlogic/qed/qed_mcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/qlogic/qed/qed_mcp.c b/drivers/net/ethernet/qlogic/qed/qed_mcp.c index cace28365189..cdd645024a32 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_mcp.c +++ b/drivers/net/ethernet/qlogic/qed/qed_mcp.c @@ -1211,6 +1211,7 @@ static void qed_mcp_handle_link_change(struct qed_hwfn *p_hwfn, break; default: p_link->speed = 0; + p_link->link_up = 0; } if (p_link->link_up && p_link->speed) |