mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
net: hns3: Check hdev state when getting link status
[ Upstream commit582d37bbb6] By default, HW link status is up. If hclge_update_link_status is called before net up, driver will print "link up". It is not suitable. hdev state check is needed when getting link status. Fixes:46a3df9f97("net: hns3: Add HNS3 Acceleration Engine & Compatibility Layer Support") Fixes:e2cb1dec97("net: hns3: Add HNS3 VF HCL(Hardware Compatibility Layer) Support") Signed-off-by: Fuyun Liang <liangfuyun1@huawei.com> Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2234cb9838
commit
e937c14f84
|
|
@ -2362,6 +2362,9 @@ static int hclge_get_mac_phy_link(struct hclge_dev *hdev)
|
|||
int mac_state;
|
||||
int link_stat;
|
||||
|
||||
if (test_bit(HCLGE_STATE_DOWN, &hdev->state))
|
||||
return 0;
|
||||
|
||||
mac_state = hclge_get_mac_link_status(hdev);
|
||||
|
||||
if (hdev->hw.mac.phydev) {
|
||||
|
|
|
|||
|
|
@ -299,6 +299,9 @@ void hclgevf_update_link_status(struct hclgevf_dev *hdev, int link_state)
|
|||
|
||||
client = handle->client;
|
||||
|
||||
link_state =
|
||||
test_bit(HCLGEVF_STATE_DOWN, &hdev->state) ? 0 : link_state;
|
||||
|
||||
if (link_state != hdev->hw.mac.link) {
|
||||
client->ops->link_status_change(handle, !!link_state);
|
||||
hdev->hw.mac.link = link_state;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user