]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: hns3: Fix for service_task not running problem after resetting
authorYunsheng Lin <linyunsheng@huawei.com>
Fri, 1 Jun 2018 16:52:05 +0000 (17:52 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Aug 2018 05:47:38 +0000 (07:47 +0200)
[ Upstream commit f5be79673fc4c925708c99ec37d77e0a2c3cd30b ]

When hclge_ae_stop is called during resetting, it will cancel the
service_task by calling cancel_work_sync, which may cause the
service_task to exit without clearing HCLGE_STATE_SERVICE_SCHED
bit. If this happens, the service_task will never run again.

This patch fixes this problem by clearing it after calling
cancel_work_sync in hclge_ae_stop.

Fixes: 46a3df9f9718 ("net: hns3: Add HNS3 Acceleration Engine & Compatibility Layer Support")
Signed-off-by: Yunsheng Lin <linyunsheng@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 <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c

index 8ce6ab07ffec756cb6b0d7a4e203aeefbe763449..48fde9fc67702c97752182f0fcaaf3a51c936562 100644 (file)
@@ -3802,6 +3802,7 @@ static void hclge_ae_stop(struct hnae3_handle *handle)
 
        del_timer_sync(&hdev->service_timer);
        cancel_work_sync(&hdev->service_task);
+       clear_bit(HCLGE_STATE_SERVICE_SCHED, &hdev->state);
 
        if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state)) {
                hclge_mac_stop_phy(hdev);
index 0e4eb2770cbc5a23c78c9b891768ba4b39464ced..53bae9317f923e0c9a58a8f3f0d37682446c6c83 100644 (file)
@@ -1323,6 +1323,7 @@ static void hclgevf_ae_stop(struct hnae3_handle *handle)
        hclgevf_reset_tqp_stats(handle);
        del_timer_sync(&hdev->service_timer);
        cancel_work_sync(&hdev->service_task);
+       clear_bit(HCLGEVF_STATE_SERVICE_SCHED, &hdev->state);
        hclgevf_update_link_status(hdev, 0);
 }