diff options
author | Jian Shen <shenjian15@huawei.com> | 2019-10-19 11:03:56 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-21 19:22:10 +0300 |
commit | 4fdd0bca6152aa201898454e63cbb255a18ae6e9 (patch) | |
tree | 99c7ce25485421e8e85c8da441f6b782d446c8f2 /drivers/net/ethernet/hisilicon/hns3/hns3pf | |
parent | 7fda3a930d15a993389018e31532f3a1e34974ab (diff) | |
download | linux-4fdd0bca6152aa201898454e63cbb255a18ae6e9.tar.xz |
net: hns3: log and clear hardware error after reset complete
When device is resetting, the CMDQ service may be stopped until
reset completed. If a new RAS error occurs at this moment, it
will no be able to clear the RAS source. This patch fixes it
by clear the RAS source after reset complete.
Signed-off-by: Jian Shen <shenjian15@huawei.com>
Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/hisilicon/hns3/hns3pf')
-rw-r--r-- | drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c index ad8e1797eb04..bf6bca26c337 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -9800,6 +9800,9 @@ static int hclge_reset_ae_dev(struct hnae3_ae_dev *ae_dev) return ret; } + /* Log and clear the hw errors those already occurred */ + hclge_handle_all_hns_hw_errors(ae_dev); + /* Re-enable the hw error interrupts because * the interrupts get disabled on global reset. */ |